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
| #include <vector> | |
| #include <iostream> | |
| #include <string.h> | |
| using namespace std; | |
| int MOD = 20170805; | |
| int r[501][501]; | |
| int d[501][501]; |
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
| #include <vector> | |
| #include <iostream> | |
| using namespace std; | |
| int dx[] = { 1, -1, 0, 0 }; | |
| int dy[] = { 0, 0, 1, -1 }; | |
| vector<vector<int>> cache; |
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
| #include <vector> | |
| #include <iostream> | |
| using namespace std; | |
| int cnt = 0; | |
| int get_star(int n) | |
| { | |
| int cnt = 0; |
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
| #include <algorithm> | |
| #include <iostream> | |
| using namespace std; | |
| int partition(int* arr, int left, int right) | |
| { | |
| int i = left; | |
| int pivot_value = arr[right]; | |
| for (int j = left; j < right; 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
| package com.teddylee777; | |
| import java.util.LinkedList; | |
| import java.util.Queue; | |
| class Solution { | |
| static final int[] dX = {-1, 0, 1, 0}; | |
| static final int[] dY = {0, -1, 0, 1}; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head><meta charset="utf-8" /> | |
| <title>kbo κ΄κ°μ ν¬λ‘€λ§</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <button type="button" id='startBtn' onclick="init()">μμ</button> | |
| <button type="button" id='stopBtn' onclick="stop()">μ€μ§</button> | |
| <div id="webcam-container"></div> | |
| <div id="label-container"></div> | |
| <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.3.1/dist/tf.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/@teachablemachine/image@0.8/dist/teachablemachine-image.min.js"></script> | |
| <script type="text/javascript"> | |
| // More API functions here: | |
| // https://github.com/googlecreativelab/teachablemachine-community/tree/master/libraries/image |
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
| # ec2-user ν¨μ€μλ μ€μ | |
| sudo passwd ec2-user | |
| # VNC Server μ€μ | |
| sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart \ | |
| -activate -configure -access -on \ | |
| -configure -allowAccessFor -specifiedUsers \ | |
| -configure -users ec2-user \ | |
| -configure -restart -agent -privs -all |
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
| { | |
| // ============================================ | |
| // μλν° κ΄λ ¨ μ€μ | |
| // ============================================ | |
| "editor.fontSize": 16, | |
| "editor.fontVariations": false, | |
| "editor.defaultFormatter": "ms-python.black-formatter", | |
| "editor.autoClosingBrackets": "never", | |
| "editor.autoClosingQuotes": "never", | |
| "editor.inlineSuggest.enabled": true, |
OlderNewer