DEV Community

Lakshya Tyagi
Lakshya Tyagi

Posted on

3 1

JavaScript Code Daily Challenge #11

About

This is a series of JavaScript Code Daily Challenge. Each day I show a few solutions written in JavaScript. The questions are from coding practice/contest sites such as HackerRank, LeetCode, Codeforces, Atcoder and etc.

CNF 2
https://codeforces.com/problemset/problem/571/C
Write code in Comment

Example - 1

// Input
2 2
2 1 -2
2 2 -1

// Output
YES
11
Enter fullscreen mode Exit fullscreen mode

Example - 2

//Input
4 3
1 1
1 2
3 -1 -2 3
1 -3

//Output
NO
Enter fullscreen mode Exit fullscreen mode

Example - 3

//Input
5 6
2 1 2
3 1 -2 3
4 -3 5 4 6
2 -6 -4
1 5


//Output
YES
100010
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Q Developer image

Your AI Code Assistant

Ask anything about your entire project, code and get answers and even architecture diagrams. Built to handle large projects, Amazon Q Developer works alongside you from idea to production code.

Start free in your IDE

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay