-
Updated
Mar 4, 2022 - Markdown
#
solutions
Here are 1,797 public repositories matching this topic...
317 efficient solutions to HackerRank problems
-
Updated
Oct 15, 2021 - Java
Common solutions and tools developed by Google Cloud's Professional Services team
bigquery
tools
solutions
examples
gke
google-cloud-dataflow
google-cloud-platform
google-cloud-compute
google-cloud-ml
-
Updated
Mar 10, 2022 - Python
-
Updated
Feb 13, 2022 - HTML
Solutions of Reinforcement Learning, An Introduction
-
Updated
Sep 11, 2021 - Jupyter Notebook
My Answer to 120 Data Science Interview Questions
-
Updated
Oct 1, 2020 - Jupyter Notebook
Solutions to problems from various online judges / contest sites.
advent-of-code
solutions
codechef
uva
competitive-programming
hackerrank
codejam
codeforces
online-judges
hackerearth
uva-solutions
atcoder
kattis
hackerrank-solutions
codeforces-solutions
codechef-solutions
acepta-el-reto
hackerearth-solutions
kattis-solutions
atcoder-solutions
-
Updated
Jan 16, 2022 - C++
Efficient solutions to "Cracking the Coding Interview" (6th Edition) problems
-
Updated
Oct 4, 2020 - Java
Complete Assignments for CS231n: Convolutional Neural Networks for Visual Recognition
computer-vision
deep-learning
solutions
tensorflow
neural-networks
stanford
image-captioning
convolutional-neural-networks
dd
cs231n
visual-recognition
assignments
-
Updated
Jul 20, 2018 - Jupyter Notebook
warycat
commented
Jan 20, 2021
The description md files can be copy paste from browser.
Self-study on Larry Wasserman's "All of Statistics"
-
Updated
Dec 30, 2021 - Jupyter Notebook
Leetcode problems & solutions
-
Updated
Jan 13, 2022 - JavaScript
1000+ javascript solutions of leetcode problems.
javascript
algorithms
leetcode
solutions
data-structures
problems
1000plus
1100plus
1200plus
1300plus
1400plus
1500plus
1600plus
1700plus
-
Updated
Mar 11, 2022 - JavaScript
-
Updated
Jan 22, 2022 - Jupyter Notebook
My Solutions to Codility (100% performance)
-
Updated
May 5, 2019 - Java
This repository contains coding assessments and their solutions for various IT companies
github
java
solutions
solution
hackerrank
questions
interview-practice
interview-questions
hackerearth
coding-interviews
interview-prep
interview-preparation
online-test
techgig
goldmansachs
javaaid
java-aid
kanahaiya
kanhaiya
hackerrank-test
-
Updated
Apr 30, 2020 - Java
The solutions of all SQL hackerrank challenges using MySQL environment
mysql
challenge
sql
solutions
tutorials
hackerrank
problem-solving
hackerrank-solutions
hackerrank-challenges
hackerrank-sql
hackerrank-sql-solutions
mysql-environment
sql-challenges
select-challenges
-
Updated
Jan 20, 2022 - SQL
VastoLorde95's solutions to 2000+ competitive programming problems from various online judges
python
template
algorithm
datastructures
cpp
solutions
codechef
spoj
icpc
competitive-programming
hackerrank
data-structures
codejam
codeforces
hackerearth
timus
spoj-solutions
-
Updated
Feb 15, 2018 - C++
Solutions to the exercises in the book "The C Programming Language" (2nd edition) by Brian W. Kernighan and Dennis M. Ritchie. This book is also referred to as K&R.
c
language
programming-language
programming
solutions
solution
programming-exercises
programming-challenges
c-language
c-programming
-
Updated
Mar 12, 2022 - C
CodeWars Solutions (Please leave a start. Thank you)
javascript
algorithms
solutions
competitive-programming
data-structures
codewars
algorithm-challenges
competitions
codewars-kata
codewars-solutions
codewars-training-exercise
algorithms-datastructures
codewarrior
algorithms-and-data-structures
codewars-challenges
codewars-kata-solution
codewars-javascript
-
Updated
Feb 25, 2022 - JavaScript
Solutions to Codeforces Problems
-
Updated
Sep 13, 2021 - C++
A Generative Adversarial Networks (GANs) Specialization made by deeplearning.ai on Coursera
github
machine-learning
course
solutions
solution
coursera
generative-adversarial-network
gan
courses
gans
generative-adversarial-networks
specialization
assignments
assignement
coursera-assignment
deeplearning-ai
-
Updated
Nov 21, 2020 - Jupyter Notebook
InterviewBit Programming Solutions
hashing
linked-list
math
cpp
solutions
graph-algorithms
maps
array
backtracking
binary-search-tree
tree-structure
dynamic-programming
greedy-algorithms
stacks
heaps
queues
interviewbit
two-pointers
bitmanipulation
-
Updated
Oct 1, 2020 - C++
hingston
commented
Dec 30, 2021
Example:
Before:
-- 7 Billion Humans (2145) --
-- 46: Compulsory Office Romance --
a:
if e == worker
tell e Hi!
listen Hi!
else
listen Hi!
tell w Hi!
jump a
After:
-- 7 Billion Humans (2231) --
-- 46: Compulsory Office Romance --
a:
if e == worker:
tell e hi
listenfor hi
else:
listenfor hi
tell w hi
endif
jump a
I will try to find
Improve this page
Add a description, image, and links to the solutions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the solutions topic, visit your repo's landing page and select "manage topics."
Nice work!
The version of implementation can reach 22+ BLUE score. However, my implementation have only 0.16+ BLUE score on test dataset. Comparing with your work, I found changing the concatenation
torch.cat((Y_t, o_pre), dim=1)
totorch.cat((o_pre, Y_t), dim=1)
can only reach 0.16+ BLUE score.B.W.T. chaging the concatenating order between
dec_hidden
anda_t
instep
function also