- Set Cover Problem - https://en.wikipedia.org/wiki/Set_cover_problem
- Maximum Coverage Problem - https://www.geeksforgeeks.org/maximum-coverage-problem/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tap 'homebrew/cask' | |
tap 'homebrew/cask-fonts' | |
tap 'homebrew/cask-versions' | |
tap 'homebrew/bundle' | |
tap 'AdoptOpenJDK/openjdk' | |
tap 'danger/tap' | |
brew 'git' | |
brew 'svn' | |
brew 'mas' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TODO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.j99; | |
public class Main { | |
public static void main(String[] args) { | |
for (int i = 1; i <= 9; i++) { | |
for (int j = 1; j <= 9; j++) { | |
System.out.print(i + " * " + j + " = " + i * j); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol LocationManageable { | |
var delegate: LocationManageableDelegate? | |
} | |
protocol LocationManageableDelegate { | |
func aMethod() | |
} | |
class LocationManager: LocationManageable { | |
static let shared = LocationManager() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
func printCalendar(year: Int, month: Int) { | |
if month < 1 || month > 12 { | |
return | |
} | |
let calendar = Calendar(identifier: .gregorian) | |
- ultrasound - https://youtu.be/4XZC76lQ2hc
- miku - https://youtu.be/yLaPU1buB8A
- 3ds - https://www.instagram.com/p/1XtW-2HdlI/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
北海道 | |
青森県 | |
岩手県 | |
宮城県 | |
秋田県 | |
山形県 | |
福島県 | |
茨城県 | |
栃木県 | |
群馬県 |
NewerOlder