Skip to content

Code Says

C code. C code run. Run code run… please!

  • Home
  • Cracking the Coding Interview
  • Codility
  • Jobdu OJ
  • LeetCode
  • Privacy Policy
  • Contact Me
  • Home
  • Cracking the Coding Interview
  • Codility
  • Jobdu OJ
  • LeetCode
  • Privacy Policy
  • Contact Me

Tag Archives: WordPress

Secure Your WordPress Login

13 Jan

Security is always one of the top concerns about websites, including WordPress. And login security is the foundation of many other security features, and usually the first line of defense. Aside from using vulnerabilities in WordPress, a less-skilled but much … Read More »

Others PHP, WordPress Leave a comment

Partial Missing Code in Comments of WordPress

10 Mar

Sometimes, the visitors posted their code in the comment section. That is an awesome way to share and communicate. However, in some cases, partial of the code inside pre/code section is missing. This unexpected feature bothered me for a long … Read More »

Others PHP, WordPress Leave a comment

A guide to deploying a cache system to WordPress on AppFog

17 Feb

AppFog is a cloud platform, supporting PHP, Ruby, Java, and so on. It is a good and free solution for small website, like personal blogs. My blog (codesays.com) is currently hosted on AppFog. But AppFog does not support persistent file … Read More »

Others AppFog, WordPress 2 Comments

Guideline for Comments

tl;dr: Please put your code into a <pre>YOUR CODE</pre> section.

Hello everyone!

If you want to ask a question about the solution. DO READ the post and comments firstly.

If you had some troubles in debugging your solution, please try to ask for help on StackOverflow, instead of here.

If you want to post some comments with code or symbol, here is the guidline.

1. To post your code, please add the code inside a <pre> </pre> section (preferred), or <code> </code>. And inside the pre or code section, you do not need to escape < > and &, e.g. no need to use &lt; instead of <.

2. To use special symbols < and > outside the pre block, please use "&lt;" and "&gt;" instead.

3. If you have a comment with lots of < and >, you could add the major part of your comment into a <pre class="decode:true crayon-inline "> YOUR COMMENTS </pre> section.

Finally, if you are posting the first comment here, it usually needs moderation. Please be patient and stay tuned. Thanks!

CodeSays.com Admin

Recent Comments

  • Jay Bariya January 18, 2023 at 3:54 pm on Solution to Triangle by codilityI initially solved it using how Sheng did to just find the mere existence of a trianglular. My code can be modified to find all...
  • Jay Bariya January 17, 2023 at 1:23 am on Solution to Max-Product-Of-Three by codility100% Python solution. Hi @Sheng, I tried solving it without using sorting. Just min and max. I believe my complexity is O(N), but Codility shows...
  • Jay Bariya January 16, 2023 at 9:15 pm on Solution to Distinct by codilityUse a dictionary or just use a set. def solution(A): unique_dict = {} for int_val in A: unique_dict[int_val] = 0 return len(unique_dict.keys())
  • Jay Bariya January 8, 2023 at 10:34 pm on Solution to Min-Avg-Two-Slice by codilityPython solution- 100%. Detected time complexity - O(N). Even before looking at the solution, the proof that global minimum average lies in slices with 2...
  • Jay Bariya January 6, 2023 at 4:57 am on Solution to Genomic-Range-Query by codilityPretty neat and easy to understand solution. Thanks.
  • Jay Bariya January 3, 2023 at 1:02 am on Solution to Count-Div by codilityPython 100%. Time Complexity O(1). def solution(A,B,K): # solution for case K = 1 if K == 1: return B-A + 1 # solution for...
  • Jay Bariya January 2, 2023 at 10:55 pm on Solution to Passing-Cars by codilityPython solution - 100%. O(N) def solution(A): n_pairs= 0 to_east = 0 # iterate over directions for direction in A: # if direction is east,...
  • Jay Bariya December 31, 2022 at 11:53 pm on Solution to Missing-Integer by codility100% on correctness and performance. Detected Time Complexity - O(N) or O(NlogN). I've explained my code with comments. def solution(A): # sort the list A.sort()...
  • Jay Bariya December 30, 2022 at 7:05 pm on Solution to Max-Counters by codilityTime Complexity - O(N+M). 100%. List comprehension in the last step instead of directly applying max() inspired from one of the other comments on Python....

Categories

  • Announcement
  • C/C++
  • Codility
  • Interview Questions
  • Java
  • Jobdu OJ
  • LeetCode
  • Linux
  • Others
  • Python
  • Solutions-CTCI
  • SQL

Tags

algorithm AppFog C codility Crawler CTCI Hash Set Interview Linux LMR pcapy PHP python rotation shuffle Utility WordPress

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
© 2023 Code Says
Powered by WordPress / Theme by Design Lab
  • Contact Me
  • About Me
  • Privacy Policy