S w i f t - M a n

최근 포스트

[스크랩] 당근마켓 관련 ERD 링크 모음

May 09 2022

karrot-clone 당근 마켓 - ERD 설계 [당근마켓] README [당근마켓/데이터베이스] 당근마켓 DB 설계 feat.ERD cloer-Choi/carrotMarket-clone 당근마켓DB프로젝트 [당근 마켓 클론] 지역 정보와 DB 선택

컴퓨터 구조

May 06 2022

프로그래밍 - 어떤 Input 을 올바른 Output 으로 만드는 것 개발자들은 C, Java, C++ 과 같은 언어를 통해 컴파일을 하게 되고 .exe, .dll 등이 만들어 진다.

[Swift] Maximum Subarray

May 06 2022

Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.

Jekyll 블로그에 Google AdSence 광고 탑재하기

April 30 2022

필자의 블로그는 수익이 전혀 없다. 블로그에 광고를 추가했다. 이유는 간단하다. Google AdSense를 사용해보고 싶었고, jekyll 블로그를 통한 광고 개재 가능 여부 등을 알고 싶었다. 1개의 게시물에 광고를 시험적으로 추가했다. 역시 클릭수는 0이다.😁 무분별한 광...

[Swift] Add Two Numbers

April 27 2022

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a s...

[Swift] 3Sum

April 26 2022

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.

[Swift] String to Integer (atoi)

April 24 2022

Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++’s atoi function).

[Swift] (String)Super Reduced String

April 17 2022

Reduce a string of lowercase characters in range ascii[‘a’..’z’]by doing a series of operations. In each operation, select a pair of adjacent letters that ma...

[Swift] Zigzag Conversion

April 15 2022

The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for bet...