• Skip to primary navigation
  • Skip to content
  • Skip to footer
Programming Archive hello world!
  • About
  • Resume
  • Tag
  • Category
  • Year
    Taehun Kim

    Taehun Kim

    Just Do it

    • Somewhere
    • Email
    • GitHub
    • Report an issue
    • 📂 Total posts 109
    • Algorithm
      • programmers (12)
      • baekjoon (24)
      AI
      • 혼자공부하는 머신러닝+딥러닝 (8)
      • 파이썬 날코딩으로 알고 짜는 딥러닝 (11)
      Computer Science
      • OS (1)
      • Software enginnering (4)
      Embedded System
      • μC-OS-III-STM32 (20)
      • STM32F107VC lab (10)
      Writing
      • paper review (5)
      • technical writing (2)
      • Scratch pad (6)
      • Goals (1)
      General Physics
      • Physics laboratory (3)
      test_subtitle
      • test1 (1)
      • test2 (1)

    [Python] 프로그래머스 - 한번만 등장한 문자

    최대 1 분 소요

    문제 링크

    프로그래머스 - 한번만 등장한 문자

    문제 풀이

    from collections import defaultdict
    def solution(s):
        answer = ''
        d = defaultdict(int)
        for k in s:
            d[k] = d[k]+1
        d = sorted(d.items())
        for key,value in d:
            if value==1:
                answer+=key
        return answer
    

    태그: 파이썬

    카테고리: programmers

    업데이트: September 14, 2023

    공유하기

    Twitter Facebook LinkedIn
    이전 다음

    댓글남기기

    참고

    I-ViT Integer-only Quantization for Efficient Vision Transformer Inference

    7 분 소요

    This article is review and derivation of Li et al., I-ViT: Integer-only Quantization for Efficient Vision Transformer Inference. 2023

    Effective Approaches to Attention-based Neural Machine Translation

    6 분 소요

    paper-review This article is review of Luong et al., Effective Approaches to Attention-based Neural Machine Translation

    2745번 - 진법 변환

    최대 1 분 소요

    문제 B진법 수 N이 주어진다. 이 수를 10진법으로 바꿔 출력하는 프로그램을 작성하시오.

    2562번 - 최댓값

    최대 1 분 소요

    문제 9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오.

    • 팔로우:
    • GitHub
    • 피드
    © 2025 Taehun Kim. Powered by Jekyll & Minimal Mistakes.