본문 바로가기

Programming36

Corona virus(COVID-19) in US with Java Hey global~! World will beat Corona Virus! Cheer up! World! Comment anything I will tell u the secret! 2020-05-27 World total confirmed : 5588299.0 US total confirmed : 1680625.0 Total confirmed without US : 3907674.0 US confirmed/World confirmed : 30.07% Total confirmed without US/World confirmed : 69.93% Global Deaths : 350423.0 US Deaths : 98902.0 Global Deaths without US : 251521.0 Death rat.. 2020. 5. 27.
[#12865 백준] 평범한 배낭 JAVA DP 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 package Baekjoon; import java.util.Scanner; public class Backpack { public static void main(String[] args) { Scanner kb = new Scanner(System.in); int howmany = kb.nextInt(); int totalWeight = kb.nextInt(); stuff[] musthave = new stuff[howmany+1]; for (int i = 1; i 2020. 5. 24.
BST(Binary Search Tree) with JAVA(ft. hanyang univ) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12.. 2020. 5. 22.
k-universal circular string (De bruijn, Eulerian, Hamiltonian graph) Here is the code print k-universal circular string(binary) 12345678910111213141516171819202122232425def circularString(lastpoint): lastpointZero = lastpoint[1:k] + '0' if lastpointZero not in partString: partString.append(lastpointZero) totalString.append(0) circularString(lastpointZero) lastpointOne = lastpoint[1:k] + '1' if lastpointOne not in partString: partString.append(lastpointOne) totalS.. 2020. 5. 20.