In this "gist" I am going to collect information related with Big Data
- Learn Big Data Analytics using Top YouTube Videos, TED Talks & other resources - https://www.analyticsvidhya.com/blog/2015/07/big-data-analytics-youtube-ted-resources/
# First gist | |
test |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.2/redux.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.2.0/umd/react.production.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.2.0/umd/react-dom.production.min.js"></script> | |
<title>JS Bin</title> | |
</head> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
@Grab(group='org.springframework.boot', module='spring-boot-starter-web', version='1.1.7.RELEASE') | |
@Grab(group='org.springframework.boot', module='spring-boot-starter-actuator', version='1.1.7.RELEASE') | |
import org.springframework.boot.*; | |
import org.springframework.boot.autoconfigure.*; | |
import org.springframework.stereotype.*; | |
import org.springframework.web.bind.annotation.*; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
/** |
In this "gist" I am going to collect information related with Big Data
[ | |
{ | |
"number": 1, | |
"title": "What is the supreme law of the land?", | |
"answers": ["the Constitution"] | |
}, | |
{ | |
"number": 2, | |
"title": "What does the Constitution do?", |
struct Solution; | |
impl Solution { | |
// [2, 7, 11, 15] t = 9 | |
// [3, 4, 2] t = 6 | |
fn two_sum(nums: Vec<i32>, target: i32) -> Vec<i32> { | |
let mut j = 0; | |
for (i, &num) in nums.iter().enumerate() { | |
if i > 0 { |