TIL/2023

[0616] TIL

개발 공주 2023. 6. 16. 22:40
728x90

항해 99 5일차

오늘부터 알고리즘 주차이다

[나의 알고리즘 git hub] https://github.com/siwoo1224/-algorithm

 

GitHub - siwoo1224/-algorithm: 알고리즘

알고리즘. Contribute to siwoo1224/-algorithm development by creating an account on GitHub.

github.com

일단은 알고리즘은 프로그래머스에서 풀고있다. 깃헙이랑 연동해서 문제를 풀면 깃허브에 차곡차곡 잘 들어간다.

이거 잔디때문에 더 풀고 싶어짐 

 

무튼 그리고 

 

https://pink-love-princess.tistory.com/category/%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98

 

'알고리즘' 카테고리의 글 목록

우아하게 코딩하자해서 공주라 한거임 오해 x

pink-love-princess.tistory.com

블로그에도 어려웠던거 있으면 알고리즘을 정리하는 습관을 가지려고 한다...아직은 뭐 없지만 앞으로 쫙쫙 늘어날 것이다.

 

풀면서 어려웠던거, 문제점, 답안을 정리했다.

일단은 오늘 풀면서 어려웠거나 참고? 다른분이 오류가 나오는데 원인을 몰랐지만 해결한것 등등

정리 해서 올렸다..

[블로그 작성]

https://pink-love-princess.tistory.com/68

https://pink-love-princess.tistory.com/69

https://pink-love-princess.tistory.com/71

 

나누어 떨어지는 숫자 배열

내 풀이 import java.util.Arrays; class Solution { public int[] solution(int[] arr, int divisor) { int count = 0; for (int i = 0; i < arr.length; i++) { if(arr[i] % divisor == 0){ count++; } } if(count == 0){ int[] answer = {-1}; return answer; }else { i

pink-love-princess.tistory.com

 

부족한 금액 계산하기

내가 쓴 풀이 class Solution { public long solution(int price, int money, int count) { long a = 0; long answer = 0; for (int i = 1; i money){ answer = a - money; } return answer; } } 뭔가 좀 더 간결하게 할 수 있을거 같은데.... 수정한

pink-love-princess.tistory.com

 

'TIL > 2023' 카테고리의 다른 글

[WIL] 항해 1주차  (0) 2023.06.18
[0617] TIL  (0) 2023.06.18
[0615] TIL  (0) 2023.06.16
[0614] TIL  (0) 2023.06.15
[0613] TIL  (0) 2023.06.14