{"group":{"id":1,"name":"Community","lockable":false,"created_at":"2012-01-18T18:02:15.000Z","updated_at":"2025-12-14T01:33:56.000Z","description":"Problems submitted by members of the MATLAB Central community.","is_default":true,"created_by":161519,"badge_id":null,"featured":false,"trending":false,"solution_count_in_trending_period":0,"trending_last_calculated":"2025-12-14T00:00:00.000Z","image_id":null,"published":true,"community_created":false,"status_id":2,"is_default_group_for_player":false,"deleted_by":null,"deleted_at":null,"restored_by":null,"restored_at":null,"description_opc":null,"description_html":null,"published_at":null},"problems":[{"id":43058,"title":"Count the numbers","description":"In a array x, count the number of times the number n appears in x.\r\n\r\nfor example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer should be 3, because 2 appears 3 times in x","description_html":"\u003cp\u003eIn a array x, count the number of times the number n appears in x.\u003c/p\u003e\u003cp\u003efor example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer should be 3, because 2 appears 3 times in x\u003c/p\u003e","function_template":"function y = countN(x,n)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = [1 2 3 4 3 2 1 2];\r\nn = 2;\r\ny_correct = 3;\r\nassert(isequal(countN(x,n),y_correct))\r\n%%\r\nx = [1 2 3 4 3 2 1 2];\r\nn = 4;\r\ny_correct = 1;\r\nassert(isequal(countN(x,n),y_correct))\r\n%%\r\nx = [1 2 3 4 3 2 1 2];\r\nn = 1;\r\ny_correct = 2;\r\nassert(isequal(countN(x,n),y_correct))\r\n","published":true,"deleted":false,"likes_count":0,"comments_count":0,"created_by":94929,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":73,"test_suite_updated_at":"2016-10-19T11:45:43.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2016-10-05T13:55:11.000Z","updated_at":"2026-02-13T18:54:12.000Z","published_at":"2016-10-05T13:55:11.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn a array x, count the number of times the number n appears in x.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003efor example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer should be 3, because 2 appears 3 times in x\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":43140,"title":"Odd times even numbers in a matrix","description":"First count the number of odd numbers in x, then the number of even. Return their product.\r\n\r\nexample:\r\n\r\n x = [1 2]\r\n\r\nOne odd and one even. The product is thus 1.","description_html":"\u003cp\u003eFirst count the number of odd numbers in x, then the number of even. Return their product.\u003c/p\u003e\u003cp\u003eexample:\u003c/p\u003e\u003cpre\u003e x = [1 2]\u003c/pre\u003e\u003cp\u003eOne odd and one even. The product is thus 1.\u003c/p\u003e","function_template":"function y = oddXeven(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = 1;\r\ny_correct = 0;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2];\r\ny_correct = 1;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2 3];\r\ny_correct = 2;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2 3 4];\r\ny_correct = 4;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2 4];\r\ny_correct = 2;\r\nassert(isequal(oddXeven(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":0,"comments_count":0,"created_by":94929,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":68,"test_suite_updated_at":"2016-10-19T11:32:53.000Z","rescore_all_solutions":true,"group_id":1,"created_at":"2016-10-07T08:43:50.000Z","updated_at":"2026-02-17T17:52:19.000Z","published_at":"2016-10-07T08:43:50.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFirst count the number of odd numbers in x, then the number of even. Return their product.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eexample:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[ x = [1 2]]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOne odd and one even. The product is thus 1.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":43112,"title":"Counting votes","description":"x is a vector of votes, e.g. x=[1 2 3 2 2 1 3 2 1 2 2 2 2], who is the winner? 1,2,3?","description_html":"\u003cp\u003ex is a vector of votes, e.g. x=[1 2 3 2 2 1 3 2 1 2 2 2 2], who is the winner? 1,2,3?\u003c/p\u003e","function_template":"function y = countVotes(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = [1 2 3 2 2 1 3 2 1 2 2 2 2];\r\ny_correct = 2;\r\nassert(isequal(countVotes(x),y_correct))\r\n%%\r\nx = [1 1 2 1 3 4 5 2 1 6 1 8 1];\r\ny_correct = 1;\r\nassert(isequal(countVotes(x),y_correct))\r\n%%\r\nx = [1 1 2 1 3 4 5 2 1 6 1 8 10 10 10 10 10 10 10 10 10 10];\r\ny_correct = 10;\r\nassert(isequal(countVotes(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":1,"comments_count":0,"created_by":94929,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":59,"test_suite_updated_at":"2016-10-19T11:38:00.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2016-10-06T08:44:10.000Z","updated_at":"2026-02-13T18:52:09.000Z","published_at":"2016-10-06T08:44:10.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ex is a vector of votes, e.g. x=[1 2 3 2 2 1 3 2 1 2 2 2 2], who is the winner? 1,2,3?\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":44698,"title":"how many of the entries are positive?","description":"Given x= sin(linspace(0,10*pi,100)), how many of the entries are positive?\r\n","description_html":"\u003cp\u003eGiven x= sin(linspace(0,10*pi,100)), how many of the entries are positive?\u003c/p\u003e","function_template":"function count = pos(x)\r\n    count=x\r\nend","test_suite":"%%\r\n\r\nassert(isequal(pos(sin(linspace(0,10*pi,100))),49))\r\n\r\n%%\r\n\r\nassert(isequal(pos(sin(linspace(0,2*pi,100))),49))\r\n\r\n%%\r\n\r\nassert(isequal(pos(-10:10),10))\r\n\r\n%%\r\nx=NaN(1,10)\r\nassert(isequal(pos(x),0))\r\n\r\n%%\r\nx=[NaN(1,10) -10:10]\r\n\r\nassert(isequal(pos(x),10))\r\n","published":true,"deleted":false,"likes_count":1,"comments_count":0,"created_by":229844,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":47,"test_suite_updated_at":"2018-07-16T17:13:17.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2018-07-16T16:21:19.000Z","updated_at":"2026-03-05T16:39:22.000Z","published_at":"2018-07-16T17:13:17.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGiven x= sin(linspace(0,10*pi,100)), how many of the entries are positive?\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":3026,"title":"Legend of Zelda - Rupee Count (Compact)","description":"Building off of \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count Problem 3025\u003e, suppose that Link's rupee wallet will now provide a compact string with one letter designating each rupee he's picked up. Once again, the rupee denominations are (with abbreviating characters):\r\n\r\n* Green (g) = 1\r\n* Blue (b) = 5\r\n* Yellow (y) = 10\r\n* Red (r) = 20\r\n* Purple (p) = 50\r\n* Orange (o) = 100\r\n* Silver (s) = 200\r\n* Big green (G) = 50\r\n* Big blue (B) = 100\r\n* Big red (R) = 200\r\n* Big gold (*) = 300\r\n\r\nNote that the string will be case-sensitive. Write a function to return the total value of rupees that Link has accumulated provided the compact rupee string.","description_html":"\u003cp\u003eBuilding off of \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\"\u003eProblem 3025\u003c/a\u003e, suppose that Link's rupee wallet will now provide a compact string with one letter designating each rupee he's picked up. Once again, the rupee denominations are (with abbreviating characters):\u003c/p\u003e\u003cul\u003e\u003cli\u003eGreen (g) = 1\u003c/li\u003e\u003cli\u003eBlue (b) = 5\u003c/li\u003e\u003cli\u003eYellow (y) = 10\u003c/li\u003e\u003cli\u003eRed (r) = 20\u003c/li\u003e\u003cli\u003ePurple (p) = 50\u003c/li\u003e\u003cli\u003eOrange (o) = 100\u003c/li\u003e\u003cli\u003eSilver (s) = 200\u003c/li\u003e\u003cli\u003eBig green (G) = 50\u003c/li\u003e\u003cli\u003eBig blue (B) = 100\u003c/li\u003e\u003cli\u003eBig red (R) = 200\u003c/li\u003e\u003cli\u003eBig gold (*) = 300\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eNote that the string will be case-sensitive. Write a function to return the total value of rupees that Link has accumulated provided the compact rupee string.\u003c/p\u003e","function_template":"function [c] = rupee_count_compact(r_str)\r\n\r\nc = 0;\r\n\r\nend\r\n","test_suite":"%%\r\nr_str = 'gbyrposGBR*';\r\nc_corr = 1036;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n\r\n%%\r\nr_str = 'gggggggggggggggggggggggggggggggggggggggggggg';\r\nc_corr = 44;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n\r\n%%\r\nr_str = 'gggbgggysgggrggggGygbog*gggyggbggrgggsbggbyGggbBggbgggysgggrggggbggrgggsbggbyGggbBgggGyggbggrgggsbggbyGggbBggrggggGygbog*gggyggbggrgggsbggbyGggbBggbggg';\r\nc_corr = 3196;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n\r\n%%\r\nr_str = 'b';\r\nn_r = randi(100);\r\nfor i = 2:n_r\r\n\tr_str = strcat(r_str,'g');\r\nend\r\nc_corr = 5 + n_r - 1;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":26769,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":77,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":32,"created_at":"2015-02-18T03:55:06.000Z","updated_at":"2026-03-19T20:00:04.000Z","published_at":"2015-02-18T03:55:06.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBuilding off of\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3025\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e, suppose that Link's rupee wallet will now provide a compact string with one letter designating each rupee he's picked up. Once again, the rupee denominations are (with abbreviating characters):\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGreen (g) = 1\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBlue (b) = 5\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYellow (y) = 10\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRed (r) = 20\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ePurple (p) = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOrange (o) = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSilver (s) = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig green (G) = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig blue (B) = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig red (R) = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig gold \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e(*\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) = 300\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eNote that the string will be case-sensitive. Write a function to return the total value of rupees that Link has accumulated provided the compact rupee string.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":54290,"title":"Count of Unique Elements of a Vector","description":"Count the number of times each unique element appears in a vector.\r\nExample:\r\nInput x = [2 9 1 2 4 9 2]\r\nOutput y = [1 1; 2 3; 4 1; 9 2]\r\n\r\n","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.44px; min-height: 0px; white-space: normal; color: rgb(0, 0, 0); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: none solid rgb(0, 0, 0); white-space: normal; \"\u003e\u003cdiv style=\"block-size: 171px; display: block; min-width: 0px; padding-block-start: 0px; padding-top: 0px; perspective-origin: 407px 85.5px; transform-origin: 407px 85.5px; vertical-align: baseline; \"\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eCount the number of times each unique element appears in a vector.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eExample:\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eInput x = [2 9 1 2 4 9 2]\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eOutput y = \u003c/span\u003e\u003cspan style=\"border-block-end-style: solid; border-block-end-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; \"\u003e[\u003c/span\u003e\u003cspan style=\"\"\u003e1 1; 2 3; 4 1; 9 2\u003c/span\u003e\u003cspan style=\"border-block-end-style: solid; border-block-end-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; \"\u003e]\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003e\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003e\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function y = countUniqueElements(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = [2 9 1 2 4 9 2];\r\ny_correct = [1 1; 2 3; 4 1; 9 2];\r\nassert(isequal(countUniqueElements(x),y_correct))\r\n\r\n%%\r\nx = [11 8 11 2 4 2 8 5 2];\r\ny_correct = [2 3; 4 1; 5 1; 8 2; 11 2];\r\nassert(isequal(countUniqueElements(x),y_correct))\r\n\r\n%%\r\nx = [17 19 20 19 6 11 20 20 3 17 20 17];\r\ny_correct = [3 1; 6 1; 11 1; 17 3; 19 2; 20 4];\r\nassert(isequal(countUniqueElements(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":1,"comments_count":0,"created_by":2124819,"edited_by":2124819,"edited_at":"2022-04-14T18:00:18.000Z","deleted_by":null,"deleted_at":null,"solvers_count":22,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":1,"created_at":"2022-04-14T15:21:08.000Z","updated_at":"2026-03-06T13:33:46.000Z","published_at":"2022-04-14T15:23:13.000Z","restored_at":null,"restored_by":null,"spam":null,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCount the number of times each unique element appears in a vector.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eExample:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eInput x = [2 9 1 2 4 9 2]\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOutput y = [1 1; 2 3; 4 1; 9 2]\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"},{"id":1077,"title":"Count up then down","description":"Create a function that produces counting up from 0 up to n then down to 0\r\n\r\nn=2 --\u003e    0     1     2     1     0\r\n\r\nn=3 --\u003e    0     1     2     3     2     1     0","description_html":"\u003cp\u003eCreate a function that produces counting up from 0 up to n then down to 0\u003c/p\u003e\u003cp\u003en=2 --\u003e    0     1     2     1     0\u003c/p\u003e\u003cp\u003en=3 --\u003e    0     1     2     3     2     1     0\u003c/p\u003e","function_template":"function y = cud(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = 0;\r\ny_correct = 0;\r\nassert(isequal(cud(x),y_correct))\r\n\r\n\r\n%%\r\nx = 1;\r\ny_correct = [0 1 0];\r\nassert(isequal(cud(x),y_correct))\r\n\r\n%%\r\nx = 2;\r\ny_correct = [0 1 2 1 0];\r\nassert(isequal(cud(x),y_correct))\r\n\r\n%%\r\nx = 3;\r\ny_correct = [0 1 2 3 2 1 0];\r\nassert(isequal(cud(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":3399,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":396,"test_suite_updated_at":"2013-01-17T09:23:11.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2012-11-29T20:56:12.000Z","updated_at":"2026-03-01T22:34:39.000Z","published_at":"2013-01-17T09:23:11.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCreate a function that produces counting up from 0 up to n then down to 0\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003en=2 --\u003e 0 1 2 1 0\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003en=3 --\u003e 0 1 2 3 2 1 0\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":44717,"title":"Five Fingers","description":"A little girl has just learnt how to count from 1 to N using the five fingers of her left hand as follows. She starts by calling her thumb 1, the first finger 2, middle finger 3, ring finger 4, and little finger 5. Then she reverses direction, calling the ring finger 6, middle finger 7, the first finger 8, and her thumb 9, after which she calls her first finger 10, and so on. \r\n\r\nWe will index her left hand from the thumb to the little finger in the order finger 1 to finger 5. Now, if she continues to count in the described manner, on which finger index will she stop for a given N?\r\n","description_html":"\u003cp\u003eA little girl has just learnt how to count from 1 to N using the five fingers of her left hand as follows. She starts by calling her thumb 1, the first finger 2, middle finger 3, ring finger 4, and little finger 5. Then she reverses direction, calling the ring finger 6, middle finger 7, the first finger 8, and her thumb 9, after which she calls her first finger 10, and so on.\u003c/p\u003e\u003cp\u003eWe will index her left hand from the thumb to the little finger in the order finger 1 to finger 5. Now, if she continues to count in the described manner, on which finger index will she stop for a given N?\u003c/p\u003e","function_template":"function index = Fingers(N)\r\n  \r\nend","test_suite":"%%\r\nassert(isequal(Fingers(1),1))\r\n\r\n%%\r\nassert(isequal(Fingers(2),2))\r\n\r\n%%\r\nassert(isequal(Fingers(3),3))\r\n\r\n%%\r\nassert(isequal(Fingers(4),4))\r\n\r\n%%\r\nassert(isequal(Fingers(5),5))\r\n\r\n%%\r\nassert(isequal(Fingers(10),2))\r\n\r\n%%\r\nassert(isequal(Fingers(22),4))\r\n\r\n%%\r\nassert(isequal(Fingers(29),5))\r\n\r\n%%\r\nassert(isequal(Fingers(65),1))\r\n\r\n%%\r\nassert(isequal(Fingers(72),2))\r\n\r\n%%\r\nassert(isequal(Fingers(123),3))\r\n\r\n%%\r\nassert(isequal(Fingers(100),4))\r\n\r\n%%\r\nassert(isequal(Fingers(325),5))\r\n\r\n%%\r\nassert(isequal(Fingers(500),4))\r\n\r\n%%\r\nassert(isequal(Fingers(555),3))\r\n\r\n%%\r\nassert(isequal(Fingers(1000),2))\r\n\r\n%%\r\nassert(isequal(Fingers(777),1))","published":true,"deleted":false,"likes_count":2,"comments_count":0,"created_by":178544,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":34,"test_suite_updated_at":"2018-09-07T18:14:58.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2018-08-04T20:32:29.000Z","updated_at":"2025-12-07T21:23:28.000Z","published_at":"2018-08-04T21:19:56.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eA little girl has just learnt how to count from 1 to N using the five fingers of her left hand as follows. She starts by calling her thumb 1, the first finger 2, middle finger 3, ring finger 4, and little finger 5. Then she reverses direction, calling the ring finger 6, middle finger 7, the first finger 8, and her thumb 9, after which she calls her first finger 10, and so on.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eWe will index her left hand from the thumb to the little finger in the order finger 1 to finger 5. Now, if she continues to count in the described manner, on which finger index will she stop for a given N?\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":3027,"title":"Legend of Zelda - Rupee Count (Item Purchase)","description":"Building off of \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count Problem 3025\u003e, suppose that an array tracks counts for each type of rupee that Link gathers. Using the following rupee values, the total amount he has collected can be easily calculated:\r\n\r\n* Green = 1\r\n* Blue = 5\r\n* Yellow = 10\r\n* Red = 20\r\n* Purple = 50\r\n* Orange = 100\r\n* Silver = 200\r\n* Big green = 50\r\n* Big blue = 100\r\n* Big red = 200\r\n* Big gold = 300\r\n\r\nFor example, [20,5,3,1,0,1,1,0,0,0,0] indicates that Link has gathered 20 green rupees (20*1 = 20), 5 blue rupees (5*5 = 25), 3 yellow rupees (3*10 = 30), and one each of red, orange, and silver (20, 100, and 200), for a total of 395.\r\n\r\nBased on the total that he has collected, write a function to determine which item(s) he can purchase from the store. The correct answer should include the most expensive item he can purchase, followed by the next least expensive, etc., until he can't purchase anymore. The function should return a cell array of the items that Link purchased in addition to the number of rupees remaining after his shopping spree. The following items are available for purchase at the local Hyrule market:\r\n\r\n* Hookshot - 3000 rupees\r\n* Bow \u0026 Arrows - 1000 rupees\r\n* Shield - 500 rupees\r\n* Magic potion - 200 rupees\r\n* Shovel - 100 rupees\r\n* Bombs - 25 rupees\r\n\r\nFor example, if Link has 1714 rupees, he could purchase the Bow \u0026 Arrows, Shield, and Magic Potion, with 14 rupees to spare. Make sure to return the items in descending cost order in the cell array. Also, assume that he can only purchase one of each item.","description_html":"\u003cp\u003eBuilding off of \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\"\u003eProblem 3025\u003c/a\u003e, suppose that an array tracks counts for each type of rupee that Link gathers. Using the following rupee values, the total amount he has collected can be easily calculated:\u003c/p\u003e\u003cul\u003e\u003cli\u003eGreen = 1\u003c/li\u003e\u003cli\u003eBlue = 5\u003c/li\u003e\u003cli\u003eYellow = 10\u003c/li\u003e\u003cli\u003eRed = 20\u003c/li\u003e\u003cli\u003ePurple = 50\u003c/li\u003e\u003cli\u003eOrange = 100\u003c/li\u003e\u003cli\u003eSilver = 200\u003c/li\u003e\u003cli\u003eBig green = 50\u003c/li\u003e\u003cli\u003eBig blue = 100\u003c/li\u003e\u003cli\u003eBig red = 200\u003c/li\u003e\u003cli\u003eBig gold = 300\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eFor example, [20,5,3,1,0,1,1,0,0,0,0] indicates that Link has gathered 20 green rupees (20*1 = 20), 5 blue rupees (5*5 = 25), 3 yellow rupees (3*10 = 30), and one each of red, orange, and silver (20, 100, and 200), for a total of 395.\u003c/p\u003e\u003cp\u003eBased on the total that he has collected, write a function to determine which item(s) he can purchase from the store. The correct answer should include the most expensive item he can purchase, followed by the next least expensive, etc., until he can't purchase anymore. The function should return a cell array of the items that Link purchased in addition to the number of rupees remaining after his shopping spree. The following items are available for purchase at the local Hyrule market:\u003c/p\u003e\u003cul\u003e\u003cli\u003eHookshot - 3000 rupees\u003c/li\u003e\u003cli\u003eBow \u0026 Arrows - 1000 rupees\u003c/li\u003e\u003cli\u003eShield - 500 rupees\u003c/li\u003e\u003cli\u003eMagic potion - 200 rupees\u003c/li\u003e\u003cli\u003eShovel - 100 rupees\u003c/li\u003e\u003cli\u003eBombs - 25 rupees\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eFor example, if Link has 1714 rupees, he could purchase the Bow \u0026 Arrows, Shield, and Magic Potion, with 14 rupees to spare. Make sure to return the items in descending cost order in the cell array. Also, assume that he can only purchase one of each item.\u003c/p\u003e","function_template":"function [i_arr,r_rem] = rupee_count_items(r)\r\n\r\nr_ref = [1,5,10,20,50,100,200,50,100,200,300];\r\ni_ref = {'Hookshot','Bow \u0026 Arrows','Shield','Magic potion','Shovel','Bombs'};\r\n\r\ni_arr = {''};\r\nr_rem = 0;\r\n\r\nend\r\n","test_suite":"%%\r\nr = [20,5,3,1,0,1,1,0,0,0,0];\r\ni_arr_corr = {'Magic potion','Shovel','Bombs'};\r\nr_rem_corr = 70;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [4,0,1,0,0,0,0,0,0,1,5];\r\ni_arr_corr = {'Bow \u0026 Arrows','Shield','Magic potion'};\r\nr_rem_corr = 14;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [194,27,13,5,3,2,1,0,1,0,1];\r\ni_arr_corr = {'Bow \u0026 Arrows','Shield'};\r\nr_rem_corr = 9;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [254,94,23,11,15,4,7,3,2,0,1];\r\ni_arr_corr = {'Hookshot','Bow \u0026 Arrows','Magic potion','Shovel','Bombs'};\r\nr_rem_corr = 49;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [255,94,24,13,15,4,7,3,2,2,1];\r\ni_arr_corr = {'Hookshot','Bow \u0026 Arrows','Shield','Magic potion','Shovel','Bombs'};\r\nr_rem_corr = 0;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [27,2,1,0,0,0,0,0,0,0,0];\r\ni_arr_corr = {'Bombs'};\r\nr_rem_corr = 22;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n\r\n%%\r\nr_ind = randi(21);\r\nr = [r_ind,2,2,1,1,0,0,0,0,0,0];\r\ni_arr_corr = {'Shovel'};\r\nr_rem_corr = r_ind;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":26769,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":54,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":32,"created_at":"2015-02-18T04:30:11.000Z","updated_at":"2026-03-19T20:01:40.000Z","published_at":"2015-02-18T04:30:11.000Z","restored_at":"2017-09-28T06:14:56.000Z","restored_by":null,"spam":false,"simulink":false,"admin_reviewed":true,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBuilding off of\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3025\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e, suppose that an array tracks counts for each type of rupee that Link gathers. Using the following rupee values, the total amount he has collected can be easily calculated:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGreen = 1\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBlue = 5\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYellow = 10\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRed = 20\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ePurple = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOrange = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSilver = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig green = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig blue = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig red = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig gold = 300\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor example, [20,5,3,1,0,1,1,0,0,0,0] indicates that Link has gathered 20 green rupees (20*1 = 20), 5 blue rupees (5*5 = 25), 3 yellow rupees (3*10 = 30), and one each of red, orange, and silver (20, 100, and 200), for a total of 395.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBased on the total that he has collected, write a function to determine which item(s) he can purchase from the store. The correct answer should include the most expensive item he can purchase, followed by the next least expensive, etc., until he can't purchase anymore. The function should return a cell array of the items that Link purchased in addition to the number of rupees remaining after his shopping spree. The following items are available for purchase at the local Hyrule market:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHookshot - 3000 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBow \u0026amp; Arrows - 1000 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eShield - 500 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eMagic potion - 200 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eShovel - 100 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBombs - 25 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor example, if Link has 1714 rupees, he could purchase the Bow \u0026amp; Arrows, Shield, and Magic Potion, with 14 rupees to spare. Make sure to return the items in descending cost order in the cell array. Also, assume that he can only purchase one of each item.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":444,"title":"count any radix?","description":"given radix r(2-9), digts d(1-4), give all possible strings in sorted order. for example, if r=2, d=2, then output {'00' '01' '10' '11'}. Please try the general solution. The test suite will be modified to ensure further debuggering.","description_html":"\u003cp\u003egiven radix r(2-9), digts d(1-4), give all possible strings in sorted order. for example, if r=2, d=2, then output {'00' '01' '10' '11'}. Please try the general solution. The test suite will be modified to ensure further debuggering.\u003c/p\u003e","function_template":"function c = counteradix(r,d)\r\n   c = {'00' '01' '10' '11'};\r\nend","test_suite":"%%\r\nr=2; d=3; c=counteradix(r,d);\r\nc_correct = {'000' '001' '010' '011' '100' '101' '110' '111'};\r\nassert(isequal(c,c_correct))\r\n%%\r\nassert(isequal(counteradix(3,2),{'00' '01' '02' '10' '11' '12' '20' '21' '22'}))\r\n","published":true,"deleted":false,"likes_count":2,"comments_count":1,"created_by":166,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":44,"test_suite_updated_at":"2012-03-24T04:15:39.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2012-03-04T02:03:22.000Z","updated_at":"2025-12-24T14:43:28.000Z","published_at":"2012-03-04T14:55:37.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003egiven radix r(2-9), digts d(1-4), give all possible strings in sorted order. for example, if r=2, d=2, then output {'00' '01' '10' '11'}. Please try the general solution. The test suite will be modified to ensure further debuggering.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":3025,"title":"Legend of Zelda - Rupee Count","description":"Rupees are the main currency in The Legend of Zelda games. The value of each rupee is determined by its color. Unfortunately, the rupee denomenations are somewhat different across the games. For the purposes of this problem, we'll assume the following values:\r\n\r\n* Green = 1\r\n* Blue = 5\r\n* Yellow = 10\r\n* Red = 20\r\n* Purple = 50\r\n* Orange = 100\r\n* Silver = 200\r\n* Big green = 50\r\n* Big blue = 100\r\n* Big red = 200\r\n* Big gold = 300\r\n\r\nYou'll be provided a cell array of strings indicating the rupees that Link has picked up in his recent adventures. Write a function to return the total value of rupees that he has accumulated in his wallet.\r\n\r\nThis problem is related to \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3026-zelda-rupee-count-compact Problem 3026\u003e and \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3027-zelda-rupee-count-item-purchase Problem 3027\u003e.","description_html":"\u003cp\u003eRupees are the main currency in The Legend of Zelda games. The value of each rupee is determined by its color. Unfortunately, the rupee denomenations are somewhat different across the games. For the purposes of this problem, we'll assume the following values:\u003c/p\u003e\u003cul\u003e\u003cli\u003eGreen = 1\u003c/li\u003e\u003cli\u003eBlue = 5\u003c/li\u003e\u003cli\u003eYellow = 10\u003c/li\u003e\u003cli\u003eRed = 20\u003c/li\u003e\u003cli\u003ePurple = 50\u003c/li\u003e\u003cli\u003eOrange = 100\u003c/li\u003e\u003cli\u003eSilver = 200\u003c/li\u003e\u003cli\u003eBig green = 50\u003c/li\u003e\u003cli\u003eBig blue = 100\u003c/li\u003e\u003cli\u003eBig red = 200\u003c/li\u003e\u003cli\u003eBig gold = 300\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eYou'll be provided a cell array of strings indicating the rupees that Link has picked up in his recent adventures. Write a function to return the total value of rupees that he has accumulated in his wallet.\u003c/p\u003e\u003cp\u003eThis problem is related to \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3026-zelda-rupee-count-compact\"\u003eProblem 3026\u003c/a\u003e and \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3027-zelda-rupee-count-item-purchase\"\u003eProblem 3027\u003c/a\u003e.\u003c/p\u003e","function_template":"function [c] = rupee_count(r_arr)\r\n\r\nc = 0;\r\n\r\nend\r\n","test_suite":"%%\r\nr_arr = {'Green','Blue','Yellow','Red','Purple','Orange','Silver','Big green','Big blue','Big red','Big gold'};\r\nc_corr = 1036;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_arr = {'Green','Blue','Yellow','Green','Green','Green','Green','Red','Green','Green','Green','Blue','Blue','Yellow','Yellow','Green','Green','Blue','Green','Blue','Yellow','Green','Green','Blue','Green','Blue','Green','Green'};\r\nc_corr = 111;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_arr = {'Green','Blue','Yellow','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Yellow'};\r\nc_corr = 44;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_arr = {'Green','Big green','Big blue','Red','Silver'};\r\nc_corr = 371;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_ref = {'Green','Blue','Yellow','Red','Purple','Orange','Silver','Big green','Big blue','Big red','Big gold'};\r\nr_v = [1,5,10,20,50,100,200,50,100,200,300];\r\nc_corr = 5;\r\nn_r = randi(100);\r\nr_arr{1} = 'Blue';\r\nfor i = 2:n_r\r\n\tind_r = randi(11);\r\n\tr_arr{i} = r_ref{ind_r};\r\n\tc_corr = c_corr + r_v(ind_r);\r\nend\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":26769,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":72,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":32,"created_at":"2015-02-18T03:36:32.000Z","updated_at":"2026-03-19T20:02:15.000Z","published_at":"2015-02-18T03:36:32.000Z","restored_at":"2017-09-28T06:14:47.000Z","restored_by":null,"spam":false,"simulink":false,"admin_reviewed":true,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRupees are the main currency in The Legend of Zelda games. The value of each rupee is determined by its color. Unfortunately, the rupee denomenations are somewhat different across the games. For the purposes of this problem, we'll assume the following values:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGreen = 1\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBlue = 5\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYellow = 10\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRed = 20\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ePurple = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOrange = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSilver = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig green = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig blue = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig red = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig gold = 300\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYou'll be provided a cell array of strings indicating the rupees that Link has picked up in his recent adventures. Write a function to return the total value of rupees that he has accumulated in his wallet.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThis problem is related to\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3026-zelda-rupee-count-compact\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3026\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e and\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3027-zelda-rupee-count-item-purchase\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3027\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":2270,"title":"Bit calculation","description":"Give me the count of numbers from 1 to n having their last two bits as 0.\r\n\r\nFor example\r\n\r\nfunction y = ret_count(4)\r\n\r\n  y = x;\r\n\r\nend\r\n\r\nHere 4 means you have to check the numbers between 1 to 4.\r\n\r\n\r\nSo the answer will be 1 as binary value of 4 is 00000100.\r\n\r\nHere n in the function is the number of numbers to be checked starting from 1.","description_html":"\u003cp\u003eGive me the count of numbers from 1 to n having their last two bits as 0.\u003c/p\u003e\u003cp\u003eFor example\u003c/p\u003e\u003cp\u003efunction y = ret_count(4)\u003c/p\u003e\u003cpre class=\"language-matlab\"\u003ey = x;\r\n\u003c/pre\u003e\u003cp\u003eend\u003c/p\u003e\u003cp\u003eHere 4 means you have to check the numbers between 1 to 4.\u003c/p\u003e\u003cp\u003eSo the answer will be 1 as binary value of 4 is 00000100.\u003c/p\u003e\u003cp\u003eHere n in the function is the number of numbers to be checked starting from 1.\u003c/p\u003e","function_template":"function y = ret_count(n)\r\n  y = x;\r\nend","test_suite":"%%\r\nn = 1;\r\ny_correct = 0;\r\nassert(isequal(ret_count(n),y_correct))\r\n\r\n\r\n%%\r\nn = 4;\r\ny_correct = 1;\r\nassert(isequal(ret_count(n),y_correct))\r\n\r\n%%\r\nn = 72;\r\ny_correct = 18;\r\nassert(isequal(ret_count(n),y_correct))\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":1,"created_by":22816,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":243,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":45,"created_at":"2014-04-08T07:33:36.000Z","updated_at":"2026-03-10T17:18:51.000Z","published_at":"2014-04-08T07:33:36.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGive me the count of numbers from 1 to n having their last two bits as 0.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor example\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003efunction y = ret_count(4)\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[y = x;]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eend\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHere 4 means you have to check the numbers between 1 to 4.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSo the answer will be 1 as binary value of 4 is 00000100.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHere n in the function is the number of numbers to be checked starting from 1.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":45246,"title":"Count digits","description":"Count total number of digits from 1 to n.\r\n\r\n* n=13\r\n* output=17\r\n\r\nsince from [1-9] total 9 digits.[10-13] total 4*2=8 digits.","description_html":"\u003cp\u003eCount total number of digits from 1 to n.\u003c/p\u003e\u003cul\u003e\u003cli\u003en=13\u003c/li\u003e\u003cli\u003eoutput=17\u003c/li\u003e\u003c/ul\u003e\u003cp\u003esince from [1-9] total 9 digits.[10-13] total 4*2=8 digits.\u003c/p\u003e","function_template":"function y=count_dig(n)\r\n  y = x;\r\nend","test_suite":"%%\r\nn = 13;\r\ny_correct = 17;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 1339;\r\ny_correct = 4249;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 0;\r\ny_correct = 0;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 299;\r\ny_correct = 789;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 10000;\r\ny_correct = 38894;\r\nassert(isequal(count_dig(n),y_correct))\r\n%\r\nn=10000675820025;\r\ny_correct = 128898350369253;\r\nassert(isequal(count_dig(n),y_correct))","published":true,"deleted":false,"likes_count":3,"comments_count":3,"created_by":363598,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":30,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":1,"created_at":"2019-12-26T23:42:51.000Z","updated_at":"2025-08-23T21:14:18.000Z","published_at":"2019-12-26T23:43:25.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCount total number of digits from 1 to n.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003en=13\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eoutput=17\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003esince from [1-9] total 9 digits.[10-13] total 4*2=8 digits.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":138,"title":"Number of 1s in the Binary Representation of a Number","description":"*Description*\r\n\r\nReturn the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.\r\n\r\n*Example*\r\n\r\n   in = 215\r\n   out = 6 ","description_html":"\u003cp\u003e\u003cb\u003eDescription\u003c/b\u003e\u003c/p\u003e\u003cp\u003eReturn the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.\u003c/p\u003e\u003cp\u003e\u003cb\u003eExample\u003c/b\u003e\u003c/p\u003e\u003cpre\u003e   in = 215\r\n   out = 6 \u003c/pre\u003e","function_template":"function y = your_fcn_name(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = 0;\r\ny_correct = 0;\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n\r\n%%\r\nx = 215;\r\ny_correct = 6;\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n\r\n%%\r\nx = 1:100;\r\ny_correct = [1 1 2 1 2 2 3 1 2 2 3 2 3 3 4 1 2 2 3 2 3 3 4 2 3 3 4 3 4 4 5 1 2 2 3 2 3 3 4 2 3 3 4 3 4 4 5 2 3 3 4 3 4 4 5 3 4 4 5 4 5 5 6 1 2 2 3 2 3 3 4 2 3 3 4 3 4 4 5 2 3 3 4 3 4 4 5 3 4 4 5 4 5 5 6 2 3 3 4 3];\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n\r\n%%\r\nx = magic(10);\r\ny_correct = [ 4  4  1  1  4  3  3  4  4  2\r\n              3  2  3  3  1  3  5  4  1  3\r\n              1  3  3  2  3  4  3  6  3  5\r\n              4  5  3  3  2  4  5  3  4  3\r\n              4  5  3  1  2  5  2  4  3  2\r\n              2  2  3  4  4  3  3  3  2  2\r\n              4  2  3  4  5  2  4  1  4  2\r\n              5  2  3  6  3  4  5  3  4  2\r\n              2  2  5  2  4  3  3  3  4  4\r\n              3  2  3  4  3  2  4  3  4  5 ];\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":4,"comments_count":2,"created_by":134,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":481,"test_suite_updated_at":"2012-01-28T08:41:00.000Z","rescore_all_solutions":false,"group_id":38,"created_at":"2012-01-28T08:41:00.000Z","updated_at":"2026-03-31T17:35:59.000Z","published_at":"2012-01-28T08:41:00.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eDescription\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eReturn the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eExample\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[   in = 215\\n   out = 6]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":45365,"title":"Count the days","description":"Count the occurrence of a particular day (e.g. Monday) for a given duration.","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.4333px; min-height: 0px; white-space: normal; color: rgb(0, 0, 0); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: rgb(0, 0, 0); white-space: normal; \"\u003e\u003cdiv style=\"block-size: 21px; display: block; min-width: 0px; padding-block-start: 0px; padding-top: 0px; perspective-origin: 407px 10.5px; transform-origin: 407px 10.5px; vertical-align: baseline; \"\u003e\u003cdiv style=\"font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 239px 8px; transform-origin: 239px 8px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eCount the occurrence of a particular day (e.g. Monday) for a given duration.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function y = count_days_2(year,day)\r\n  y = x;\r\nend","test_suite":"%%\r\nassert(isequal(count_days_2([2010:2020],'Fri'),574))\r\n%%\r\nassert(isequal(count_days_2([1910:2020],'Sat'),5792))\r\n%%\r\nassert(isequal( count_days_2([1942:1947],'Sun'),313))\r\n%%\r\nassert(isequal(count_days_2([1899:1912],'Wed'),730))\r\n%%\r\nassert(isequal(count_days_2([1798:1902],'Sun'),5478))\r\n%%\r\nassert(isequal(count_days_2(2012,'Mon'),53))\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":363598,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":65,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":1,"created_at":"2020-03-15T19:12:07.000Z","updated_at":"2025-12-14T15:43:27.000Z","published_at":"2020-03-15T19:12:33.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCount the occurrence of a particular day (e.g. Monday) for a given duration.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"},{"id":61058,"title":"5-year Annedversaries","description":"This is the Bonus Round problem for the 2025 Cody Contest. Attend the watch party on Friday, March 27 to see how 6 champions from the three contest teams solved this problem. For more information, see the announcement.\r\n\r\nIn a rare moment of wisdom, Lord Ned realized that he should reward his advisors for their years of service to Nedland. It also occurred to him that it might be insightful to determine the distribution of his advisors' tenures, to see if he is being counseled by a variety of perspectives. Unfortunately, he then reverted to (slightly insane) form and got overly carried away with the idea, decreeing that all his government departments must report the annual distribution of their staff tenures, going back the last 13 years. He wants the distribution binned into 5-year groups. That is, 0-4 years, 5-9 years, 10-14 years, and so on, up to the longest-serving official on staff for that department.\r\n\r\nHaving some familiarity with Lord Ned's eccentricities, his Minister of Egregious Summaries and Statistics realized that this reporting should be simple to automate, by someone with a little programming experience.\r\nGiven an n-by-2 matrix representing the start and end years of each staff member, return a 13-by-m matrix giving the number of staff members in each of the 5-year bins for each of the 13 years from 2013 to 2025.\r\nThe first column of the input gives the year each person started working for the department. The second column gives the year they left. If they are still working, the value in the second column will be NaN.\r\nFor the output matrix A, A(j,k) is the number of people in the jth year that have a tenure in the kth bin. The years are 2013 to 2025. The tenure bins are 0-4, 5-9, 10-14, etc. Therefore, A(j,k) is the number of people in year (2012+k) that have been employed between 5*(k-1) and (5*k - 1) years. A will always have 13 rows. The number of columns of A (m) will depend on the longest tenure of the department's staff members. This will depend on initial hire dates, some of which might be significantly before 2013.\r\nLord Ned has decreed that he wants an end-of-year report for each year. Therefore if someone leaves in the current year, they are not included in the count. Anyone who has joined in that year is counted, with a tenure rounded down to 0 years. Tenures continue to be rounded down, so if someone joined in 2010, in 2014 they are counted as a 4-year tenure.\r\nThese rules mean that, in the example image, the counts can be determined by looking at the colored bars immediately to the right of the dashed line that represents the year.\r\nExample\r\nyrs = [1999 2013;\r\n    2002 2022;\r\n    2005 2016;\r\n    2010 2016;\r\n    2013 NaN;\r\n    2016 2024;\r\n    2016 2023;\r\n    2022 NaN;\r\n    2023 NaN;\r\n    2024 NaN];\r\nIn 2013, there were four staff members. The longest serving staff member (14 years) left in this year and was replaced by someone new. Therefore for 2013, the tenures recorded are 11, 8, 3, 0, which means 2 people in 0-4 years, 1 in 5-9 years, 1 in 10-14.\r\nIn 2014, the tenures recorded are 12, 9, 4, 1, which gives the same distribution.\r\nIn 2015, the tenures are 13, 10, 5, 2, which means the distribution shifts to [1 1 2].\r\nIn 2016, two people leave and are replaced. Tenures of 14, 3, 0, 0 result in a distribution of [3 0 1].\r\nIn 2017, the tenures are 15, 4, 1, 1, which means the distribution is now [3 0 0 1] (for the first time, we have someone in the 15-19 year group).\r\nIn 2022, the staff member that started in 2002 left. This would have been their 20-year anniversary, but because they left, they are not counted in the 2022 report. No other staff member reaches a 20-year tenure, so the output matrix has four columns (0-4, 5-9, 10-14, 15-19).\r\nA = fiveyearcounts(yrs)\r\nA =\r\n     2     1     1     0\r\n     2     1     1     0\r\n     1     1     2     0\r\n     3     0     1     0\r\n     3     0     0     1\r\n     2     1     0     1\r\n     2     1     0     1\r\n     2     1     0     1\r\n     0     3     0     1\r\n     1     3     0     0\r\n     2     1     1     0\r\n     3     0     1     0\r\n     3     0     1     0     \r\nAssumptions\r\nThe report needs to work only for years 2013 to 2025. However, staff members may be hired any time before 2013, which means the output matrix can have any number of columns. The input matrix will not include staff members who left before 2013.","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.44px; min-height: 0px; white-space: normal; color: rgb(33, 33, 33); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: none; white-space: normal; \"\u003e\u003cdiv style=\"block-size: 1913px; display: block; min-width: 0px; padding-block-start: 0px; padding-inline-start: 2px; padding-left: 2px; padding-top: 0px; perspective-origin: 468.5px 956.5px; transform-origin: 468.5px 956.5px; vertical-align: baseline; \"\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eThis is the Bonus Round problem for the \u003c/span\u003e\u003c/span\u003e\u003ca target='_blank' href = \"https://www.mathworks.com/matlabcentral/contests/cody-contest-2025.html\"\u003e\u003cspan style=\"border-block-end-color: rgb(0, 91, 130); border-block-start-color: rgb(0, 91, 130); border-bottom-color: rgb(0, 91, 130); border-inline-end-color: rgb(0, 91, 130); border-inline-start-color: rgb(0, 91, 130); border-left-color: rgb(0, 91, 130); border-right-color: rgb(0, 91, 130); border-top-color: rgb(0, 91, 130); caret-color: rgb(0, 91, 130); color: rgb(0, 91, 130); column-rule-color: rgb(0, 91, 130); outline-color: rgb(0, 91, 130); text-decoration-color: rgb(0, 91, 130); text-emphasis-color: rgb(0, 91, 130); \"\u003e\u003cspan style=\"font-style: italic; \"\u003e2025 Cody Contest\u003c/span\u003e\u003c/span\u003e\u003c/a\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003e. Attend the \u003c/span\u003e\u003c/span\u003e\u003ca target='_blank' href = \"https://teams.microsoft.com/meet/27032540699600?p=Aen4hOpVieReYuEwhw\"\u003e\u003cspan style=\"border-block-end-color: rgb(0, 91, 130); border-block-start-color: rgb(0, 91, 130); border-bottom-color: rgb(0, 91, 130); border-inline-end-color: rgb(0, 91, 130); border-inline-start-color: rgb(0, 91, 130); border-left-color: rgb(0, 91, 130); border-right-color: rgb(0, 91, 130); border-top-color: rgb(0, 91, 130); caret-color: rgb(0, 91, 130); color: rgb(0, 91, 130); column-rule-color: rgb(0, 91, 130); outline-color: rgb(0, 91, 130); text-decoration-color: rgb(0, 91, 130); text-emphasis-color: rgb(0, 91, 130); \"\u003e\u003cspan style=\"font-style: italic; \"\u003ewatch party on Friday, March 27\u003c/span\u003e\u003c/span\u003e\u003c/a\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003e to see how 6 champions from the three contest teams solved this problem. For more information, see the \u003c/span\u003e\u003c/span\u003e\u003ca target='_blank' href = \"https://www.mathworks.com/matlabcentral/discussions/contest-channels/887048?s_tid=feature_matlabanswers\"\u003e\u003cspan style=\"border-block-end-color: rgb(0, 91, 130); border-block-start-color: rgb(0, 91, 130); border-bottom-color: rgb(0, 91, 130); border-inline-end-color: rgb(0, 91, 130); border-inline-start-color: rgb(0, 91, 130); border-left-color: rgb(0, 91, 130); border-right-color: rgb(0, 91, 130); border-top-color: rgb(0, 91, 130); caret-color: rgb(0, 91, 130); color: rgb(0, 91, 130); column-rule-color: rgb(0, 91, 130); outline-color: rgb(0, 91, 130); text-decoration-color: rgb(0, 91, 130); text-emphasis-color: rgb(0, 91, 130); \"\u003e\u003cspan style=\"font-style: italic; \"\u003eannouncement\u003c/span\u003e\u003c/span\u003e\u003c/a\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003e.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 105px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 52.5px; text-align: left; transform-origin: 444.5px 52.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn a rare moment of wisdom, Lord Ned realized that he should reward his advisors for their years of service to Nedland. It also occurred to him that it might be insightful to determine the distribution of his advisors' tenures, to see if he is being counseled by a variety of perspectives. Unfortunately, he then reverted to (slightly insane) form and got overly carried away with the idea, decreeing that all his government departments must report the annual distribution of their staff tenures, going back the last 13 years. He wants the distribution binned into 5-year groups. That is, 0-4 years, 5-9 years, 10-14 years, and so on, up to the longest-serving official on staff for that department.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 544px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 272px; text-align: left; transform-origin: 444.5px 272px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cimg class=\"imageNode\" width=\"780\" height=\"538\" style=\"vertical-align: baseline;width: 780px;height: 538px\" src=\"data:image/png;base64,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WlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAeyhet/LmabvllgXLDXJDy81lbFpVrqIIsIevIW+eJrepCpYb5IavX7/+9ttvv+UyNu0UWpGrKAIAfJ5cxO5d/vnnKYoAAF25iN27/PPPUxQBALpyEbt3+eefpygCAHTlInbv8s8/T1EEAOjKReze5Z9/nqIIANCVi9i9yz//PEURYLkvIW+eJrepCpYb5IYvX778+uuvv+YyNu0UWpGrKALsofjzf/PmabvllgXLDXJDy81lbFpVrqIIsIfidStvnrZbblmw3CA3tNxcxqZV5SqKAHsoXrfy5mm75ZYFyw1yQ8vNZWxaVa6iCLCH4nUrb562W25ZsNwgN7TcXMamVeUqigB7KF638uZpu+WWBcsNckPLzWVsWlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAe/gl5M3T5DZVwXKD3PDLL7/885///GcuY9NOoRW5iiIAwOfJReze5Z9/nqIIANCVi9i9yz//PEURAKArF7F7l3/+eYoiAEBXLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAZYr/LQOuSdVwXKD3ODjcRRFgArFn/+bN0/bLbcsWG6QG1puLmPTqnIVRYA9FK9befO03XLLguUGuaHl5jI2rSpXUQTYQ/G6lTdP2y23LFhukBtabi5j06pyFUWAPRSvW3nztN1yy4LlBrmh5eYyNq0qV1EE2EPxupU3T9sttyxYbpAbWm4uY9OqchVFgD0Ur1t587TdcsuC5Qa5oeXmMjatKldRBNjDl5A3T5PbVAXLDXLDly9ffv31119zGZt2Cq3IVRQBAD5PLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAQC6chG7d/nnn6coAgB05SJ27/LPP09RBADoykXs3uWff56iCLDc15A3T5PbVAXLDXLD169ff/vtt99yGZt2Cq3IVRQB9lD8+b9587TdcsuC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIA0KUoAgDQpSgCLFf1MWlym6pg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\" alt=\"A Gantt-chart-style visualization of \" data-image-state=\"image-loaded\"\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eHaving some familiarity with Lord Ned's eccentricities, his Minister of Egregious Summaries and Statistics realized that this reporting should be simple to automate, by someone with a little programming experience.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eGiven an \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003en\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e-by-2 matrix representing the start and end years of each staff member, return a 13-by-\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003em\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e matrix giving the number of staff members in each of the 5-year bins for each of the 13 years from 2013 to 2025.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eThe first column of the input gives the year each person started working for the department. The second column gives the year they left. If they are still working, the value in the second column will be \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; \"\u003eNaN\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 84px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 42px; text-align: left; transform-origin: 444.5px 42px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eFor the output matrix \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e, \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e(\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ej\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e,\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) is the number of people in the \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ej\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eth\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e year that have a tenure in the \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eth\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e bin. The years are 2013 to 2025. The tenure bins are 0-4, 5-9, 10-14, etc. Therefore, \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e(\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ej\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e,\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) is the number of people in year (2012+\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) that have been employed between 5*(\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e-1) and (5*\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e - 1) years. \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e will always have 13 rows. The number of columns of \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e (\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003em\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) will depend on the longest tenure of the department's staff members. This will depend on initial hire dates, some of which might be significantly before 2013.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 63px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 31.5px; text-align: left; transform-origin: 444.5px 31.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eLord Ned has decreed that he wants an end-of-year report for each year. Therefore if someone leaves in the current year, they are not included in the count. Anyone who has joined in that year is counted, with a tenure rounded down to 0 years. Tenures continue to be rounded down, so if someone joined in 2010, in 2014 they are counted as a 4-year tenure.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eThese rules mean that, in the example image, the counts can be determined by looking at the colored bars immediately to the right of the dashed line that represents the year.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-weight: 700; \"\u003eExample\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgb(247, 247, 247); block-size: 180px; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-end-end-radius: 4px; border-end-start-radius: 4px; border-start-end-radius: 4px; border-start-start-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; margin-block-end: 10px; margin-block-start: 10px; margin-bottom: 10px; margin-inline-end: 3px; margin-inline-start: 3px; margin-left: 3px; margin-right: 3px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 464.5px 90px; transform-origin: 464.5px 90px; margin-left: 3px; margin-top: 10px; margin-bottom: 10px; \"\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003eyrs = [1999 2013;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2002 2022;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2005 2016;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2010 2016;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2013 NaN;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2016 2024;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2016 2023;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2022 NaN;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2023 NaN;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2024 NaN];\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 10px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 10px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2013, there were four staff members. The longest serving staff member (14 years) left in this year and was replaced by someone new. Therefore for 2013, the tenures recorded are 11, 8, 3, 0, which means 2 people in 0-4 years, 1 in 5-9 years, 1 in 10-14.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2014, the tenures recorded are 12, 9, 4, 1, which gives the same distribution.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2015, the tenures are 13, 10, 5, 2, which means the distribution shifts to [1 1 2].\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2016, two people leave and are replaced. Tenures of 14, 3, 0, 0 result in a distribution of [3 0 1].\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2017, the tenures are 15, 4, 1, 1, which means the distribution is now [3 0 0 1] (for the first time, we have someone in the 15-19 year group).\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2022, the staff member that started in 2002 left. This would have been their 20-year anniversary, but because they left, they are not counted in the 2022 report. No other staff member reaches a 20-year tenure, so the output matrix has four columns (0-4, 5-9, 10-14, 15-19).\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgb(247, 247, 247); block-size: 270px; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-end-end-radius: 4px; border-end-start-radius: 4px; border-start-end-radius: 4px; border-start-start-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; margin-block-end: 10px; margin-block-start: 10px; margin-bottom: 10px; margin-inline-end: 3px; margin-inline-start: 3px; margin-left: 3px; margin-right: 3px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 464.5px 135px; transform-origin: 464.5px 135px; margin-left: 3px; margin-top: 10px; margin-bottom: 10px; \"\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003eA = fiveyearcounts(yrs)\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003eA =\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     1     1     2     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     0     3     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     1     3     0     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     1     0     \u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 10px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 10px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-weight: 700; \"\u003eAssumptions\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eThe report needs to work only for years 2013 to 2025. However, staff members may be hired any time before 2013, which means the output matrix can have any number of columns. The input matrix will not include staff members who left before 2013.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function A = fiveyearcounts(yrs)\r\n  A = yrs;\r\nend","test_suite":"%% Test case #1\r\nyrs = [1997 NaN;1999 2022;2000 NaN;2000 2017;2005 2015;2008 2015;2011 2017;2013 NaN;2015 NaN;2015 NaN;2015 2018;2017 NaN;2017 NaN;2018 NaN;2022 2024;2022 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 2 3 1 0 0;2 2 2 2 0 0;5 0 0 4 0 0;4 1 0 4 0 0;6 0 0 2 1 0;5 1 0 2 1 0;5 1 0 1 2 0;3 3 0 0 3 0;3 3 0 0 3 0;3 5 0 0 1 1;2 5 1 0 1 1;2 5 1 0 1 1;2 3 3 0 0 2];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #2\r\nyrs = [1993 2017;2001 2021;2004 2014;2009 2014;2011 2014;2011 NaN;2013 2013;2013 2017;2013 NaN;2014 2018;2014 NaN;2014 2019;2017 2018;2017 2018;2018 2019;2018 NaN;2018 2020;2019 2021;2019 NaN;2020 2022;2021 2023;2021 NaN;2022 NaN;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [5 1 1 0 1;6 0 1 0 1;6 0 1 0 1;5 1 0 1 1;6 1 0 1 0;5 2 0 1 0;4 3 0 1 0;4 3 0 1 0;5 2 1 0 0;5 2 1 0 0;4 2 2 0 0;3 2 3 0 0;3 2 3 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #3\r\nyrs = [1995 2015;1995 NaN;1997 2024;2002 2021;2009 NaN;2010 2021;2012 2016;2013 2019;2015 2022;2016 NaN;2019 NaN;2021 2023;2021 NaN;2022 NaN;2023 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [4 0 1 3 0 0 0;3 1 1 3 0 0 0;3 2 1 1 1 0 0;3 2 1 1 1 0 0;3 2 0 1 2 0 0;2 3 0 1 2 0 0;3 1 1 1 2 0 0;2 1 2 1 1 1 0;3 2 1 0 1 1 0;4 1 1 0 0 2 0;4 1 1 0 0 2 0;4 2 0 1 0 1 0;4 2 0 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #4\r\nyrs = [1997 2014;1998 2015;1999 2016;2007 2022;2014 NaN;2015 2017;2016 NaN;2017 2018;2018 2022;2022 NaN;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 1 1 2;1 1 0 2;2 1 0 1;3 1 0 0;3 0 1 0;3 0 1 0;2 1 1 0;2 1 1 0;1 2 1 0;2 2 0 0;2 2 0 0;2 1 1 0;2 1 1 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #5\r\nyrs = [1995 2023;1996 2015;1997 2013;1997 NaN;2005 2023;2006 NaN;2009 2013;2013 2019;2013 2017;2013 2017;2015 2019;2017 NaN;2017 NaN;2019 2023;2019 NaN;2023 NaN;2023 2024;2023 NaN;2023 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 2 0 3 0 0;3 2 0 3 0 0;4 1 1 1 1 0;4 0 2 1 1 0;4 0 2 0 2 0;3 1 2 0 2 0;4 0 2 0 2 0;4 0 1 1 1 1;4 0 0 2 1 1;2 2 0 2 0 2;5 2 0 1 0 1;4 3 0 1 0 1;4 3 0 1 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #6\r\nyrs = [1993 2017;1997 2014;2000 2015;2000 2019;2001 2013;2004 2013;2007 2020;2011 NaN;2013 NaN;2013 2017;2014 NaN;2015 2018;2017 NaN;2017 2019;2017 2019;2018 NaN;2019 NaN;2019 NaN;2019 NaN;2020 NaN;2021 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 1 2 1 1;4 1 2 0 1;5 1 0 1 1;4 2 0 1 1;6 1 1 1 0;5 2 1 1 0;5 3 1 0 0;6 3 0 0 0;7 2 1 0 0;6 3 1 0 0;5 3 2 0 0;2 5 3 0 0;1 6 3 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #7\r\nyrs = [1995 NaN;1997 2021;2002 2016;2002 2016;2005 2016;2006 2024;2010 2022;2011 NaN;2016 2022;2016 NaN;2016 NaN;2021 NaN;2022 NaN;2022 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 2 2 2 0 0 0;2 2 2 2 0 0 0;1 2 3 1 1 0 0;3 2 1 1 1 0 0;3 2 1 0 2 0 0;3 2 1 0 2 0 0;3 2 1 0 2 0 0;3 1 2 0 1 1 0;1 3 2 1 0 1 0;3 2 1 1 0 1 0;3 2 1 1 0 1 0;4 2 1 0 0 1 0;4 2 1 0 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #8\r\nyrs = [1998 NaN;2002 2015;2003 2018;2013 2015;2015 2016;2015 NaN;2016 NaN;2018 2019;2019 2022;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 0 2 1 0 0;1 0 2 1 0 0;2 0 1 1 0 0;2 0 1 1 0 0;2 0 1 1 0 0;3 0 0 0 1 0;3 0 0 0 1 0;2 1 0 0 1 0;1 2 0 0 1 0;1 2 0 0 1 0;1 2 0 0 0 1;1 2 0 0 0 1;1 1 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #9\r\nyrs = [1996 2016;1997 NaN;1998 NaN;2000 NaN;2015 NaN;2016 2018;2018 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 0 1 3 0 0;0 0 1 3 0 0;1 0 0 4 0 0;2 0 0 3 0 0;2 0 0 2 1 0;2 0 0 1 2 0;2 0 0 1 2 0;1 1 0 0 3 0;1 1 0 0 3 0;1 1 0 0 2 1;0 2 0 0 1 2;0 2 0 0 1 2;0 1 1 0 0 3];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #10\r\nyrs = [1993 2018;1994 2015;1994 2021;1995 2015;1997 2021;2004 2016;2005 NaN;2007 2018;2015 2017;2015 2019;2016 NaN;2017 NaN;2018 2023;2018 NaN;2019 NaN;2021 2024;2021 2024;2023 NaN;2024 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 3 0 4 1 0;0 2 1 2 3 0;2 1 2 1 2 0;3 1 1 1 2 0;3 0 2 0 3 0;5 0 1 0 2 0;5 0 1 0 1 1;5 0 0 1 1 1;6 1 0 1 0 0;5 2 0 1 0 0;4 3 0 1 0 0;3 4 0 1 0 0;3 4 0 0 1 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #11\r\nyrs = [1998 NaN;2004 2017;2005 2013;2006 2020;2013 NaN;2017 NaN;2020 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 2 0 1 0 0;1 1 1 1 0 0;1 1 1 1 0 0;1 0 2 1 0 0;2 0 1 1 0 0;1 1 1 0 1 0;1 1 1 0 1 0;2 1 0 0 1 0;2 1 0 0 1 0;1 2 0 0 1 0;1 1 1 0 0 1;1 1 1 0 0 1;0 2 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #12\r\nyrs = [1993 2019;1993 2023;1998 2021;2001 2018;2017 2018;2018 2020;2018 NaN;2019 NaN;2020 2021;2020 2022;2021 NaN;2021 NaN;2022 2023;2022 NaN;2023 NaN;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 0 1 1 2 0;0 0 1 1 2 0;0 0 1 1 2 0;0 0 0 2 2 0;1 0 0 2 2 0;2 0 0 0 1 2;3 0 0 0 1 1;4 0 0 0 1 1;5 0 0 0 0 1;6 0 0 0 0 1;6 1 0 0 0 0;5 2 0 0 0 0;5 2 0 0 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #13\r\nyrs = [1999 2020;2004 2023;2011 2019;2011 2013;2013 2016;2016 2020;2019 NaN;2020 2022;2020 NaN;2022 NaN;2023 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 1 1 0 0;2 0 1 1 0;2 0 1 1 0;1 1 1 1 0;1 1 1 1 0;1 1 1 1 0;2 0 0 1 1;3 0 0 1 0;3 0 0 1 0;3 0 0 1 0;4 0 0 0 0;4 1 0 0 0;3 2 0 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #14\r\nyrs = [1996 NaN;1996 2021;2001 NaN;2006 NaN;2007 2015;2008 2024;2009 NaN;2011 2014;2014 2019;2015 NaN;2019 NaN;2021 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 3 1 2 0 0;1 4 1 2 0 0;2 3 1 2 0 0;2 2 1 1 2 0;2 2 1 1 2 0;2 1 2 1 2 0;2 0 3 1 2 0;1 1 3 1 2 0;2 1 2 1 1 1;2 1 2 1 1 1;2 1 1 2 1 1;2 2 0 2 1 1;2 1 1 2 1 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #15\r\nyrs = [1996 2014;2002 NaN;2002 2020;2004 NaN;2008 2013;2011 2022;2012 2016;2013 2014;2013 NaN;2014 2020;2014 2024;2016 2021;2020 2022;2020 NaN;2021 2024;2022 NaN;2022 2024;2024 NaN;2024 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [4 1 2 1 0;5 0 3 0 0;5 0 3 0 0;4 1 3 0 0;4 1 1 2 0;3 2 1 2 0;1 4 0 3 0;3 3 0 2 0;3 2 1 2 0;4 2 0 1 1;4 1 1 1 1;5 0 1 0 2;4 1 1 0 2];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #16\r\nyrs = [1993 2016;1995 2019;2006 2018;2009 NaN;2012 NaN;2013 2022;2016 2020;2017 2018;2018 NaN;2018 NaN;2019 NaN;2020 NaN;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 1 0 1 1;2 2 0 1 1;2 2 0 0 2;3 1 1 0 1;3 2 1 0 1;3 3 0 0 1;4 2 1 0 0;4 2 1 0 0;4 2 1 0 0;5 0 2 0 0;3 2 2 0 0;2 3 1 1 0;1 4 1 1 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #17\r\nyrs = [2001 2017;2002 NaN;2004 2022;2006 NaN;2009 2018;2013 NaN;2017 2021;2018 2022;2021 NaN;2022 NaN;2022 2023;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 2 2 0 0;1 2 3 0 0;1 2 3 0 0;1 1 3 1 0;2 1 2 1 0;2 1 2 1 0;2 1 1 2 0;2 1 1 2 0;2 1 0 3 0;3 1 0 1 1;3 0 1 1 1;3 0 1 1 1;3 0 1 1 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #18\r\nyrs = [1993 NaN;1996 2022;2006 NaN;2012 2016;2016 NaN;2016 2017;2017 2018;2018 2021;2021 2022;2022 NaN;2022 2023;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 1 0 1 1 0 0;1 1 0 1 1 0 0;1 1 0 1 1 0 0;2 0 1 0 2 0 0;2 0 1 0 2 0 0;2 0 1 0 1 1 0;2 0 1 0 1 1 0;2 0 1 0 1 1 0;1 1 0 1 0 2 0;2 1 0 1 0 1 0;2 1 0 1 0 0 1;2 1 0 1 0 0 1;2 1 0 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #19\r\nyrs = [1994 2022;1995 NaN;1996 NaN;2001 NaN;2007 2018;2012 NaN;2014 2017;2015 NaN;2017 NaN;2018 2019;2019 NaN;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 1 1 3 0 0 0;2 1 1 2 1 0 0;3 1 1 1 2 0 0;3 1 0 1 3 0 0;2 1 1 1 3 0 0;3 1 0 1 3 0 0;3 1 0 1 2 1 0;2 2 0 1 1 2 0;2 2 0 0 1 3 0;2 2 1 0 1 2 0;2 2 1 0 1 2 0;1 3 1 0 1 2 0;1 2 2 0 1 1 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #20\r\nyrs = [1993 NaN;1994 NaN;1999 NaN;2004 NaN;2005 2016;2010 2022;2013 2020;2013 2013;2013 2019;2016 2023;2019 2021;2020 NaN;2021 2022;2022 NaN;2022 NaN;2023 NaN;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 2 1 1 1 0 0;3 1 1 1 2 0 0;2 1 2 1 2 0 0;3 1 1 1 2 0 0;3 1 1 1 2 0 0;1 3 1 1 1 1 0;2 2 0 1 1 2 0;3 0 1 1 1 2 0;2 1 1 1 1 2 0;3 1 0 1 1 2 0;5 0 0 1 1 1 1;5 0 0 0 1 1 2;4 1 0 0 1 1 2];\r\nassert(isequal(A,Asol))","published":true,"deleted":false,"likes_count":2,"comments_count":2,"created_by":287,"edited_by":47495,"edited_at":"2026-03-13T16:28:14.000Z","deleted_by":null,"deleted_at":null,"solvers_count":19,"test_suite_updated_at":"2025-11-12T15:35:41.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2025-11-04T20:23:24.000Z","updated_at":"2026-03-30T15:20:12.000Z","published_at":"2026-03-13T12:17:42.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eThis is the Bonus Round problem for the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/contests/cody-contest-2025.html\\\"\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e2025 Cody Contest\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e. Attend the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://teams.microsoft.com/meet/27032540699600?p=Aen4hOpVieReYuEwhw\\\"\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ewatch party on Friday, March 27\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e to see how 6 champions from the three contest teams solved this problem. For more information, see the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/discussions/contest-channels/887048?s_tid=feature_matlabanswers\\\"\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eannouncement\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn a rare moment of wisdom, Lord Ned realized that he should reward his advisors for their years of service to Nedland. It also occurred to him that it might be insightful to determine the distribution of his advisors' tenures, to see if he is being counseled by a variety of perspectives. Unfortunately, he then reverted to (slightly insane) form and got overly carried away with the idea, decreeing that all his government departments must report the annual distribution of their staff tenures, going back the last 13 years. He wants the distribution binned into 5-year groups. That is, 0-4 years, 5-9 years, 10-14 years, and so on, up to the longest-serving official on staff for that department.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:customXml w:element=\\\"image\\\"\u003e\u003cw:customXmlPr\u003e\u003cw:attr w:name=\\\"height\\\" w:val=\\\"538\\\"/\u003e\u003cw:attr w:name=\\\"width\\\" w:val=\\\"780\\\"/\u003e\u003cw:attr w:name=\\\"verticalAlign\\\" w:val=\\\"baseline\\\"/\u003e\u003cw:attr w:name=\\\"altText\\\" w:val=\\\"A Gantt-chart-style visualization of \\\"/\u003e\u003cw:attr w:name=\\\"relationshipId\\\" w:val=\\\"rId1\\\"/\u003e\u003c/w:customXmlPr\u003e\u003c/w:customXml\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHaving some familiarity with Lord Ned's eccentricities, his Minister of Egregious Summaries and Statistics realized that this reporting should be simple to automate, by someone with a little programming experience.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGiven an \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003en\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e-by-2 matrix representing the start and end years of each staff member, return a 13-by-\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003em\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e matrix giving the number of staff members in each of the 5-year bins for each of the 13 years from 2013 to 2025.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThe first column of the input gives the year each person started working for the department. The second column gives the year they left. If they are still working, the value in the second column will be \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:rFonts w:cs=\\\"monospace\\\"/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eNaN\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor the output matrix \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e, \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e(\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ej\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e,\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) is the number of people in the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ej\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003eth\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e year that have a tenure in the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003eth\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e bin. The years are 2013 to 2025. The tenure bins are 0-4, 5-9, 10-14, etc. Therefore, \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e(\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ej\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e,\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) is the number of people in year (2012+\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) that have been employed between 5*(\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e-1) and (5*\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e - 1) years. \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e will always have 13 rows. The number of columns of \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e (\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003em\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) will depend on the longest tenure of the department's staff members. This will depend on initial hire dates, some of which might be significantly before 2013.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eLord Ned has decreed that he wants an end-of-year report for each year. Therefore if someone leaves in the current year, they are not included in the count. Anyone who has joined in that year is counted, with a tenure rounded down to 0 years. Tenures continue to be rounded down, so if someone joined in 2010, in 2014 they are counted as a 4-year tenure.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThese rules mean that, in the example image, the counts can be determined by looking at the colored bars immediately to the right of the dashed line that represents the year.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eExample\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[yrs = [1999 2013;\\n    2002 2022;\\n    2005 2016;\\n    2010 2016;\\n    2013 NaN;\\n    2016 2024;\\n    2016 2023;\\n    2022 NaN;\\n    2023 NaN;\\n    2024 NaN];]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2013, there were four staff members. The longest serving staff member (14 years) left in this year and was replaced by someone new. Therefore for 2013, the tenures recorded are 11, 8, 3, 0, which means 2 people in 0-4 years, 1 in 5-9 years, 1 in 10-14.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2014, the tenures recorded are 12, 9, 4, 1, which gives the same distribution.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2015, the tenures are 13, 10, 5, 2, which means the distribution shifts to [1 1 2].\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2016, two people leave and are replaced. Tenures of 14, 3, 0, 0 result in a distribution of [3 0 1].\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2017, the tenures are 15, 4, 1, 1, which means the distribution is now [3 0 0 1] (for the first time, we have someone in the 15-19 year group).\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2022, the staff member that started in 2002 left. This would have been their 20-year anniversary, but because they left, they are not counted in the 2022 report. No other staff member reaches a 20-year tenure, so the output matrix has four columns (0-4, 5-9, 10-14, 15-19).\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[A = fiveyearcounts(yrs)\\nA =\\n     2     1     1     0\\n     2     1     1     0\\n     1     1     2     0\\n     3     0     1     0\\n     3     0     0     1\\n     2     1     0     1\\n     2     1     0     1\\n     2     1     0     1\\n     0     3     0     1\\n     1     3     0     0\\n     2     1     1     0\\n     3     0     1     0\\n     3     0     1     0     ]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eAssumptions\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThe report needs to work only for years 2013 to 2025. However, staff members may be hired any time before 2013, which means the output matrix can have any number of columns. The input matrix will not include staff members who left before 2013.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/image\",\"target\":\"/media/image1.png\",\"relationshipId\":\"rId1\"}]},{\"partUri\":\"/media/image1.png\",\"contentType\":\"image/png\",\"content\":\"data:image/png;base64,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WlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAeyhet/LmabvllgXLDXJDy81lbFpVrqIIsIevIW+eJrepCpYb5IavX7/+9ttvv+UyNu0UWpGrKAIAfJ5cxO5d/vnnKYoAAF25iN27/PPPUxQBALpyEbt3+eefpygCAHTlInbv8s8/T1EEAOjKReze5Z9/nqIIANCVi9i9yz//PEURYLkvIW+eJrepCpYb5IYvX778+uuvv+YyNu0UWpGrKALsofjzf/PmabvllgXLDXJDy81lbFpVrqIIsIfidStvnrZbblmw3CA3tNxcxqZV5SqKAHsoXrfy5mm75ZYFyw1yQ8vNZWxaVa6iCLCH4nUrb562W25ZsNwgN7TcXMamVeUqigB7KF638uZpu+WWBcsNckPLzWVsWlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAe/gl5M3T5DZVwXKD3PDLL7/885///GcuY9NOoRW5iiIAwOfJReze5Z9/nqIIANCVi9i9yz//PEURAKArF7F7l3/+eYoiAEBXLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAZYr/LQOuSdVwXKD3ODjcRRFgArFn/+bN0/bLbcsWG6QG1puLmPTqnIVRYA9FK9befO03XLLguUGuaHl5jI2rSpXUQTYQ/G6lTdP2y23LFhukBtabi5j06pyFUWAPRSvW3nztN1yy4LlBrmh5eYyNq0qV1EE2EPxupU3T9sttyxYbpAbWm4uY9OqchVFgD0Ur1t587TdcsuC5Qa5oeXmMjatKldRBNjDl5A3T5PbVAXLDXLDly9ffv31119zGZt2Cq3IVRQBAD5PLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAQC6chG7d/nnn6coAgB05SJ27/LPP09RBADoykXs3uWff56iCLDc15A3T5PbVAXLDXLD169ff/vtt99yGZt2Cq3IVRQB9lD8+b9587TdcsuC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIA0KUoAgDQpSgCLFf1MWlym6pg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\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"}],"problem_search":{"errors":[],"problems":[{"id":43058,"title":"Count the numbers","description":"In a array x, count the number of times the number n appears in x.\r\n\r\nfor example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer should be 3, because 2 appears 3 times in x","description_html":"\u003cp\u003eIn a array x, count the number of times the number n appears in x.\u003c/p\u003e\u003cp\u003efor example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer should be 3, because 2 appears 3 times in x\u003c/p\u003e","function_template":"function y = countN(x,n)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = [1 2 3 4 3 2 1 2];\r\nn = 2;\r\ny_correct = 3;\r\nassert(isequal(countN(x,n),y_correct))\r\n%%\r\nx = [1 2 3 4 3 2 1 2];\r\nn = 4;\r\ny_correct = 1;\r\nassert(isequal(countN(x,n),y_correct))\r\n%%\r\nx = [1 2 3 4 3 2 1 2];\r\nn = 1;\r\ny_correct = 2;\r\nassert(isequal(countN(x,n),y_correct))\r\n","published":true,"deleted":false,"likes_count":0,"comments_count":0,"created_by":94929,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":73,"test_suite_updated_at":"2016-10-19T11:45:43.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2016-10-05T13:55:11.000Z","updated_at":"2026-02-13T18:54:12.000Z","published_at":"2016-10-05T13:55:11.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn a array x, count the number of times the number n appears in x.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003efor example: x = [1 2 3 4 3 2 1 2] and n = 2 the answer should be 3, because 2 appears 3 times in x\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":43140,"title":"Odd times even numbers in a matrix","description":"First count the number of odd numbers in x, then the number of even. Return their product.\r\n\r\nexample:\r\n\r\n x = [1 2]\r\n\r\nOne odd and one even. The product is thus 1.","description_html":"\u003cp\u003eFirst count the number of odd numbers in x, then the number of even. Return their product.\u003c/p\u003e\u003cp\u003eexample:\u003c/p\u003e\u003cpre\u003e x = [1 2]\u003c/pre\u003e\u003cp\u003eOne odd and one even. The product is thus 1.\u003c/p\u003e","function_template":"function y = oddXeven(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = 1;\r\ny_correct = 0;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2];\r\ny_correct = 1;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2 3];\r\ny_correct = 2;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2 3 4];\r\ny_correct = 4;\r\nassert(isequal(oddXeven(x),y_correct))\r\n%%\r\nx = [1 2 4];\r\ny_correct = 2;\r\nassert(isequal(oddXeven(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":0,"comments_count":0,"created_by":94929,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":68,"test_suite_updated_at":"2016-10-19T11:32:53.000Z","rescore_all_solutions":true,"group_id":1,"created_at":"2016-10-07T08:43:50.000Z","updated_at":"2026-02-17T17:52:19.000Z","published_at":"2016-10-07T08:43:50.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFirst count the number of odd numbers in x, then the number of even. Return their product.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eexample:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[ x = [1 2]]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOne odd and one even. The product is thus 1.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":43112,"title":"Counting votes","description":"x is a vector of votes, e.g. x=[1 2 3 2 2 1 3 2 1 2 2 2 2], who is the winner? 1,2,3?","description_html":"\u003cp\u003ex is a vector of votes, e.g. x=[1 2 3 2 2 1 3 2 1 2 2 2 2], who is the winner? 1,2,3?\u003c/p\u003e","function_template":"function y = countVotes(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = [1 2 3 2 2 1 3 2 1 2 2 2 2];\r\ny_correct = 2;\r\nassert(isequal(countVotes(x),y_correct))\r\n%%\r\nx = [1 1 2 1 3 4 5 2 1 6 1 8 1];\r\ny_correct = 1;\r\nassert(isequal(countVotes(x),y_correct))\r\n%%\r\nx = [1 1 2 1 3 4 5 2 1 6 1 8 10 10 10 10 10 10 10 10 10 10];\r\ny_correct = 10;\r\nassert(isequal(countVotes(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":1,"comments_count":0,"created_by":94929,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":59,"test_suite_updated_at":"2016-10-19T11:38:00.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2016-10-06T08:44:10.000Z","updated_at":"2026-02-13T18:52:09.000Z","published_at":"2016-10-06T08:44:10.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ex is a vector of votes, e.g. x=[1 2 3 2 2 1 3 2 1 2 2 2 2], who is the winner? 1,2,3?\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":44698,"title":"how many of the entries are positive?","description":"Given x= sin(linspace(0,10*pi,100)), how many of the entries are positive?\r\n","description_html":"\u003cp\u003eGiven x= sin(linspace(0,10*pi,100)), how many of the entries are positive?\u003c/p\u003e","function_template":"function count = pos(x)\r\n    count=x\r\nend","test_suite":"%%\r\n\r\nassert(isequal(pos(sin(linspace(0,10*pi,100))),49))\r\n\r\n%%\r\n\r\nassert(isequal(pos(sin(linspace(0,2*pi,100))),49))\r\n\r\n%%\r\n\r\nassert(isequal(pos(-10:10),10))\r\n\r\n%%\r\nx=NaN(1,10)\r\nassert(isequal(pos(x),0))\r\n\r\n%%\r\nx=[NaN(1,10) -10:10]\r\n\r\nassert(isequal(pos(x),10))\r\n","published":true,"deleted":false,"likes_count":1,"comments_count":0,"created_by":229844,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":47,"test_suite_updated_at":"2018-07-16T17:13:17.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2018-07-16T16:21:19.000Z","updated_at":"2026-03-05T16:39:22.000Z","published_at":"2018-07-16T17:13:17.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGiven x= sin(linspace(0,10*pi,100)), how many of the entries are positive?\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":3026,"title":"Legend of Zelda - Rupee Count (Compact)","description":"Building off of \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count Problem 3025\u003e, suppose that Link's rupee wallet will now provide a compact string with one letter designating each rupee he's picked up. Once again, the rupee denominations are (with abbreviating characters):\r\n\r\n* Green (g) = 1\r\n* Blue (b) = 5\r\n* Yellow (y) = 10\r\n* Red (r) = 20\r\n* Purple (p) = 50\r\n* Orange (o) = 100\r\n* Silver (s) = 200\r\n* Big green (G) = 50\r\n* Big blue (B) = 100\r\n* Big red (R) = 200\r\n* Big gold (*) = 300\r\n\r\nNote that the string will be case-sensitive. Write a function to return the total value of rupees that Link has accumulated provided the compact rupee string.","description_html":"\u003cp\u003eBuilding off of \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\"\u003eProblem 3025\u003c/a\u003e, suppose that Link's rupee wallet will now provide a compact string with one letter designating each rupee he's picked up. Once again, the rupee denominations are (with abbreviating characters):\u003c/p\u003e\u003cul\u003e\u003cli\u003eGreen (g) = 1\u003c/li\u003e\u003cli\u003eBlue (b) = 5\u003c/li\u003e\u003cli\u003eYellow (y) = 10\u003c/li\u003e\u003cli\u003eRed (r) = 20\u003c/li\u003e\u003cli\u003ePurple (p) = 50\u003c/li\u003e\u003cli\u003eOrange (o) = 100\u003c/li\u003e\u003cli\u003eSilver (s) = 200\u003c/li\u003e\u003cli\u003eBig green (G) = 50\u003c/li\u003e\u003cli\u003eBig blue (B) = 100\u003c/li\u003e\u003cli\u003eBig red (R) = 200\u003c/li\u003e\u003cli\u003eBig gold (*) = 300\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eNote that the string will be case-sensitive. Write a function to return the total value of rupees that Link has accumulated provided the compact rupee string.\u003c/p\u003e","function_template":"function [c] = rupee_count_compact(r_str)\r\n\r\nc = 0;\r\n\r\nend\r\n","test_suite":"%%\r\nr_str = 'gbyrposGBR*';\r\nc_corr = 1036;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n\r\n%%\r\nr_str = 'gggggggggggggggggggggggggggggggggggggggggggg';\r\nc_corr = 44;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n\r\n%%\r\nr_str = 'gggbgggysgggrggggGygbog*gggyggbggrgggsbggbyGggbBggbgggysgggrggggbggrgggsbggbyGggbBgggGyggbggrgggsbggbyGggbBggrggggGygbog*gggyggbggrgggsbggbyGggbBggbggg';\r\nc_corr = 3196;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n\r\n%%\r\nr_str = 'b';\r\nn_r = randi(100);\r\nfor i = 2:n_r\r\n\tr_str = strcat(r_str,'g');\r\nend\r\nc_corr = 5 + n_r - 1;\r\nassert(isequal(rupee_count_compact(r_str),c_corr));\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":26769,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":77,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":32,"created_at":"2015-02-18T03:55:06.000Z","updated_at":"2026-03-19T20:00:04.000Z","published_at":"2015-02-18T03:55:06.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBuilding off of\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3025\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e, suppose that Link's rupee wallet will now provide a compact string with one letter designating each rupee he's picked up. Once again, the rupee denominations are (with abbreviating characters):\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGreen (g) = 1\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBlue (b) = 5\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYellow (y) = 10\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRed (r) = 20\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ePurple (p) = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOrange (o) = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSilver (s) = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig green (G) = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig blue (B) = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig red (R) = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig gold \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e(*\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) = 300\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eNote that the string will be case-sensitive. Write a function to return the total value of rupees that Link has accumulated provided the compact rupee string.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":54290,"title":"Count of Unique Elements of a Vector","description":"Count the number of times each unique element appears in a vector.\r\nExample:\r\nInput x = [2 9 1 2 4 9 2]\r\nOutput y = [1 1; 2 3; 4 1; 9 2]\r\n\r\n","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.44px; min-height: 0px; white-space: normal; color: rgb(0, 0, 0); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: none solid rgb(0, 0, 0); white-space: normal; \"\u003e\u003cdiv style=\"block-size: 171px; display: block; min-width: 0px; padding-block-start: 0px; padding-top: 0px; perspective-origin: 407px 85.5px; transform-origin: 407px 85.5px; vertical-align: baseline; \"\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eCount the number of times each unique element appears in a vector.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eExample:\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eInput x = [2 9 1 2 4 9 2]\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eOutput y = \u003c/span\u003e\u003cspan style=\"border-block-end-style: solid; border-block-end-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; \"\u003e[\u003c/span\u003e\u003cspan style=\"\"\u003e1 1; 2 3; 4 1; 9 2\u003c/span\u003e\u003cspan style=\"border-block-end-style: solid; border-block-end-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; \"\u003e]\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003e\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003e\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function y = countUniqueElements(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = [2 9 1 2 4 9 2];\r\ny_correct = [1 1; 2 3; 4 1; 9 2];\r\nassert(isequal(countUniqueElements(x),y_correct))\r\n\r\n%%\r\nx = [11 8 11 2 4 2 8 5 2];\r\ny_correct = [2 3; 4 1; 5 1; 8 2; 11 2];\r\nassert(isequal(countUniqueElements(x),y_correct))\r\n\r\n%%\r\nx = [17 19 20 19 6 11 20 20 3 17 20 17];\r\ny_correct = [3 1; 6 1; 11 1; 17 3; 19 2; 20 4];\r\nassert(isequal(countUniqueElements(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":1,"comments_count":0,"created_by":2124819,"edited_by":2124819,"edited_at":"2022-04-14T18:00:18.000Z","deleted_by":null,"deleted_at":null,"solvers_count":22,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":1,"created_at":"2022-04-14T15:21:08.000Z","updated_at":"2026-03-06T13:33:46.000Z","published_at":"2022-04-14T15:23:13.000Z","restored_at":null,"restored_by":null,"spam":null,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCount the number of times each unique element appears in a vector.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eExample:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eInput x = [2 9 1 2 4 9 2]\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOutput y = [1 1; 2 3; 4 1; 9 2]\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"},{"id":1077,"title":"Count up then down","description":"Create a function that produces counting up from 0 up to n then down to 0\r\n\r\nn=2 --\u003e    0     1     2     1     0\r\n\r\nn=3 --\u003e    0     1     2     3     2     1     0","description_html":"\u003cp\u003eCreate a function that produces counting up from 0 up to n then down to 0\u003c/p\u003e\u003cp\u003en=2 --\u003e    0     1     2     1     0\u003c/p\u003e\u003cp\u003en=3 --\u003e    0     1     2     3     2     1     0\u003c/p\u003e","function_template":"function y = cud(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = 0;\r\ny_correct = 0;\r\nassert(isequal(cud(x),y_correct))\r\n\r\n\r\n%%\r\nx = 1;\r\ny_correct = [0 1 0];\r\nassert(isequal(cud(x),y_correct))\r\n\r\n%%\r\nx = 2;\r\ny_correct = [0 1 2 1 0];\r\nassert(isequal(cud(x),y_correct))\r\n\r\n%%\r\nx = 3;\r\ny_correct = [0 1 2 3 2 1 0];\r\nassert(isequal(cud(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":3399,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":396,"test_suite_updated_at":"2013-01-17T09:23:11.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2012-11-29T20:56:12.000Z","updated_at":"2026-03-01T22:34:39.000Z","published_at":"2013-01-17T09:23:11.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCreate a function that produces counting up from 0 up to n then down to 0\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003en=2 --\u003e 0 1 2 1 0\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003en=3 --\u003e 0 1 2 3 2 1 0\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":44717,"title":"Five Fingers","description":"A little girl has just learnt how to count from 1 to N using the five fingers of her left hand as follows. She starts by calling her thumb 1, the first finger 2, middle finger 3, ring finger 4, and little finger 5. Then she reverses direction, calling the ring finger 6, middle finger 7, the first finger 8, and her thumb 9, after which she calls her first finger 10, and so on. \r\n\r\nWe will index her left hand from the thumb to the little finger in the order finger 1 to finger 5. Now, if she continues to count in the described manner, on which finger index will she stop for a given N?\r\n","description_html":"\u003cp\u003eA little girl has just learnt how to count from 1 to N using the five fingers of her left hand as follows. She starts by calling her thumb 1, the first finger 2, middle finger 3, ring finger 4, and little finger 5. Then she reverses direction, calling the ring finger 6, middle finger 7, the first finger 8, and her thumb 9, after which she calls her first finger 10, and so on.\u003c/p\u003e\u003cp\u003eWe will index her left hand from the thumb to the little finger in the order finger 1 to finger 5. Now, if she continues to count in the described manner, on which finger index will she stop for a given N?\u003c/p\u003e","function_template":"function index = Fingers(N)\r\n  \r\nend","test_suite":"%%\r\nassert(isequal(Fingers(1),1))\r\n\r\n%%\r\nassert(isequal(Fingers(2),2))\r\n\r\n%%\r\nassert(isequal(Fingers(3),3))\r\n\r\n%%\r\nassert(isequal(Fingers(4),4))\r\n\r\n%%\r\nassert(isequal(Fingers(5),5))\r\n\r\n%%\r\nassert(isequal(Fingers(10),2))\r\n\r\n%%\r\nassert(isequal(Fingers(22),4))\r\n\r\n%%\r\nassert(isequal(Fingers(29),5))\r\n\r\n%%\r\nassert(isequal(Fingers(65),1))\r\n\r\n%%\r\nassert(isequal(Fingers(72),2))\r\n\r\n%%\r\nassert(isequal(Fingers(123),3))\r\n\r\n%%\r\nassert(isequal(Fingers(100),4))\r\n\r\n%%\r\nassert(isequal(Fingers(325),5))\r\n\r\n%%\r\nassert(isequal(Fingers(500),4))\r\n\r\n%%\r\nassert(isequal(Fingers(555),3))\r\n\r\n%%\r\nassert(isequal(Fingers(1000),2))\r\n\r\n%%\r\nassert(isequal(Fingers(777),1))","published":true,"deleted":false,"likes_count":2,"comments_count":0,"created_by":178544,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":34,"test_suite_updated_at":"2018-09-07T18:14:58.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2018-08-04T20:32:29.000Z","updated_at":"2025-12-07T21:23:28.000Z","published_at":"2018-08-04T21:19:56.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eA little girl has just learnt how to count from 1 to N using the five fingers of her left hand as follows. She starts by calling her thumb 1, the first finger 2, middle finger 3, ring finger 4, and little finger 5. Then she reverses direction, calling the ring finger 6, middle finger 7, the first finger 8, and her thumb 9, after which she calls her first finger 10, and so on.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eWe will index her left hand from the thumb to the little finger in the order finger 1 to finger 5. Now, if she continues to count in the described manner, on which finger index will she stop for a given N?\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":3027,"title":"Legend of Zelda - Rupee Count (Item Purchase)","description":"Building off of \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count Problem 3025\u003e, suppose that an array tracks counts for each type of rupee that Link gathers. Using the following rupee values, the total amount he has collected can be easily calculated:\r\n\r\n* Green = 1\r\n* Blue = 5\r\n* Yellow = 10\r\n* Red = 20\r\n* Purple = 50\r\n* Orange = 100\r\n* Silver = 200\r\n* Big green = 50\r\n* Big blue = 100\r\n* Big red = 200\r\n* Big gold = 300\r\n\r\nFor example, [20,5,3,1,0,1,1,0,0,0,0] indicates that Link has gathered 20 green rupees (20*1 = 20), 5 blue rupees (5*5 = 25), 3 yellow rupees (3*10 = 30), and one each of red, orange, and silver (20, 100, and 200), for a total of 395.\r\n\r\nBased on the total that he has collected, write a function to determine which item(s) he can purchase from the store. The correct answer should include the most expensive item he can purchase, followed by the next least expensive, etc., until he can't purchase anymore. The function should return a cell array of the items that Link purchased in addition to the number of rupees remaining after his shopping spree. The following items are available for purchase at the local Hyrule market:\r\n\r\n* Hookshot - 3000 rupees\r\n* Bow \u0026 Arrows - 1000 rupees\r\n* Shield - 500 rupees\r\n* Magic potion - 200 rupees\r\n* Shovel - 100 rupees\r\n* Bombs - 25 rupees\r\n\r\nFor example, if Link has 1714 rupees, he could purchase the Bow \u0026 Arrows, Shield, and Magic Potion, with 14 rupees to spare. Make sure to return the items in descending cost order in the cell array. Also, assume that he can only purchase one of each item.","description_html":"\u003cp\u003eBuilding off of \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\"\u003eProblem 3025\u003c/a\u003e, suppose that an array tracks counts for each type of rupee that Link gathers. Using the following rupee values, the total amount he has collected can be easily calculated:\u003c/p\u003e\u003cul\u003e\u003cli\u003eGreen = 1\u003c/li\u003e\u003cli\u003eBlue = 5\u003c/li\u003e\u003cli\u003eYellow = 10\u003c/li\u003e\u003cli\u003eRed = 20\u003c/li\u003e\u003cli\u003ePurple = 50\u003c/li\u003e\u003cli\u003eOrange = 100\u003c/li\u003e\u003cli\u003eSilver = 200\u003c/li\u003e\u003cli\u003eBig green = 50\u003c/li\u003e\u003cli\u003eBig blue = 100\u003c/li\u003e\u003cli\u003eBig red = 200\u003c/li\u003e\u003cli\u003eBig gold = 300\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eFor example, [20,5,3,1,0,1,1,0,0,0,0] indicates that Link has gathered 20 green rupees (20*1 = 20), 5 blue rupees (5*5 = 25), 3 yellow rupees (3*10 = 30), and one each of red, orange, and silver (20, 100, and 200), for a total of 395.\u003c/p\u003e\u003cp\u003eBased on the total that he has collected, write a function to determine which item(s) he can purchase from the store. The correct answer should include the most expensive item he can purchase, followed by the next least expensive, etc., until he can't purchase anymore. The function should return a cell array of the items that Link purchased in addition to the number of rupees remaining after his shopping spree. The following items are available for purchase at the local Hyrule market:\u003c/p\u003e\u003cul\u003e\u003cli\u003eHookshot - 3000 rupees\u003c/li\u003e\u003cli\u003eBow \u0026 Arrows - 1000 rupees\u003c/li\u003e\u003cli\u003eShield - 500 rupees\u003c/li\u003e\u003cli\u003eMagic potion - 200 rupees\u003c/li\u003e\u003cli\u003eShovel - 100 rupees\u003c/li\u003e\u003cli\u003eBombs - 25 rupees\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eFor example, if Link has 1714 rupees, he could purchase the Bow \u0026 Arrows, Shield, and Magic Potion, with 14 rupees to spare. Make sure to return the items in descending cost order in the cell array. Also, assume that he can only purchase one of each item.\u003c/p\u003e","function_template":"function [i_arr,r_rem] = rupee_count_items(r)\r\n\r\nr_ref = [1,5,10,20,50,100,200,50,100,200,300];\r\ni_ref = {'Hookshot','Bow \u0026 Arrows','Shield','Magic potion','Shovel','Bombs'};\r\n\r\ni_arr = {''};\r\nr_rem = 0;\r\n\r\nend\r\n","test_suite":"%%\r\nr = [20,5,3,1,0,1,1,0,0,0,0];\r\ni_arr_corr = {'Magic potion','Shovel','Bombs'};\r\nr_rem_corr = 70;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [4,0,1,0,0,0,0,0,0,1,5];\r\ni_arr_corr = {'Bow \u0026 Arrows','Shield','Magic potion'};\r\nr_rem_corr = 14;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [194,27,13,5,3,2,1,0,1,0,1];\r\ni_arr_corr = {'Bow \u0026 Arrows','Shield'};\r\nr_rem_corr = 9;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [254,94,23,11,15,4,7,3,2,0,1];\r\ni_arr_corr = {'Hookshot','Bow \u0026 Arrows','Magic potion','Shovel','Bombs'};\r\nr_rem_corr = 49;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [255,94,24,13,15,4,7,3,2,2,1];\r\ni_arr_corr = {'Hookshot','Bow \u0026 Arrows','Shield','Magic potion','Shovel','Bombs'};\r\nr_rem_corr = 0;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n%%\r\nr = [27,2,1,0,0,0,0,0,0,0,0];\r\ni_arr_corr = {'Bombs'};\r\nr_rem_corr = 22;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n\r\n\r\n%%\r\nr_ind = randi(21);\r\nr = [r_ind,2,2,1,1,0,0,0,0,0,0];\r\ni_arr_corr = {'Shovel'};\r\nr_rem_corr = r_ind;\r\n[i_arr,r_rem] = rupee_count_items(r);\r\nassert(isequal(r_rem,r_rem_corr));\r\nassert(isequal(i_arr,i_arr_corr));\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":26769,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":54,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":32,"created_at":"2015-02-18T04:30:11.000Z","updated_at":"2026-03-19T20:01:40.000Z","published_at":"2015-02-18T04:30:11.000Z","restored_at":"2017-09-28T06:14:56.000Z","restored_by":null,"spam":false,"simulink":false,"admin_reviewed":true,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBuilding off of\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3025-zelda-rupee-count\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3025\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e, suppose that an array tracks counts for each type of rupee that Link gathers. Using the following rupee values, the total amount he has collected can be easily calculated:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGreen = 1\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBlue = 5\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYellow = 10\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRed = 20\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ePurple = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOrange = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSilver = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig green = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig blue = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig red = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig gold = 300\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor example, [20,5,3,1,0,1,1,0,0,0,0] indicates that Link has gathered 20 green rupees (20*1 = 20), 5 blue rupees (5*5 = 25), 3 yellow rupees (3*10 = 30), and one each of red, orange, and silver (20, 100, and 200), for a total of 395.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBased on the total that he has collected, write a function to determine which item(s) he can purchase from the store. The correct answer should include the most expensive item he can purchase, followed by the next least expensive, etc., until he can't purchase anymore. The function should return a cell array of the items that Link purchased in addition to the number of rupees remaining after his shopping spree. The following items are available for purchase at the local Hyrule market:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHookshot - 3000 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBow \u0026amp; Arrows - 1000 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eShield - 500 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eMagic potion - 200 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eShovel - 100 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBombs - 25 rupees\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor example, if Link has 1714 rupees, he could purchase the Bow \u0026amp; Arrows, Shield, and Magic Potion, with 14 rupees to spare. Make sure to return the items in descending cost order in the cell array. Also, assume that he can only purchase one of each item.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":444,"title":"count any radix?","description":"given radix r(2-9), digts d(1-4), give all possible strings in sorted order. for example, if r=2, d=2, then output {'00' '01' '10' '11'}. Please try the general solution. The test suite will be modified to ensure further debuggering.","description_html":"\u003cp\u003egiven radix r(2-9), digts d(1-4), give all possible strings in sorted order. for example, if r=2, d=2, then output {'00' '01' '10' '11'}. Please try the general solution. The test suite will be modified to ensure further debuggering.\u003c/p\u003e","function_template":"function c = counteradix(r,d)\r\n   c = {'00' '01' '10' '11'};\r\nend","test_suite":"%%\r\nr=2; d=3; c=counteradix(r,d);\r\nc_correct = {'000' '001' '010' '011' '100' '101' '110' '111'};\r\nassert(isequal(c,c_correct))\r\n%%\r\nassert(isequal(counteradix(3,2),{'00' '01' '02' '10' '11' '12' '20' '21' '22'}))\r\n","published":true,"deleted":false,"likes_count":2,"comments_count":1,"created_by":166,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":44,"test_suite_updated_at":"2012-03-24T04:15:39.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2012-03-04T02:03:22.000Z","updated_at":"2025-12-24T14:43:28.000Z","published_at":"2012-03-04T14:55:37.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003egiven radix r(2-9), digts d(1-4), give all possible strings in sorted order. for example, if r=2, d=2, then output {'00' '01' '10' '11'}. Please try the general solution. The test suite will be modified to ensure further debuggering.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":3025,"title":"Legend of Zelda - Rupee Count","description":"Rupees are the main currency in The Legend of Zelda games. The value of each rupee is determined by its color. Unfortunately, the rupee denomenations are somewhat different across the games. For the purposes of this problem, we'll assume the following values:\r\n\r\n* Green = 1\r\n* Blue = 5\r\n* Yellow = 10\r\n* Red = 20\r\n* Purple = 50\r\n* Orange = 100\r\n* Silver = 200\r\n* Big green = 50\r\n* Big blue = 100\r\n* Big red = 200\r\n* Big gold = 300\r\n\r\nYou'll be provided a cell array of strings indicating the rupees that Link has picked up in his recent adventures. Write a function to return the total value of rupees that he has accumulated in his wallet.\r\n\r\nThis problem is related to \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3026-zelda-rupee-count-compact Problem 3026\u003e and \u003chttps://www.mathworks.com/matlabcentral/cody/problems/3027-zelda-rupee-count-item-purchase Problem 3027\u003e.","description_html":"\u003cp\u003eRupees are the main currency in The Legend of Zelda games. The value of each rupee is determined by its color. Unfortunately, the rupee denomenations are somewhat different across the games. For the purposes of this problem, we'll assume the following values:\u003c/p\u003e\u003cul\u003e\u003cli\u003eGreen = 1\u003c/li\u003e\u003cli\u003eBlue = 5\u003c/li\u003e\u003cli\u003eYellow = 10\u003c/li\u003e\u003cli\u003eRed = 20\u003c/li\u003e\u003cli\u003ePurple = 50\u003c/li\u003e\u003cli\u003eOrange = 100\u003c/li\u003e\u003cli\u003eSilver = 200\u003c/li\u003e\u003cli\u003eBig green = 50\u003c/li\u003e\u003cli\u003eBig blue = 100\u003c/li\u003e\u003cli\u003eBig red = 200\u003c/li\u003e\u003cli\u003eBig gold = 300\u003c/li\u003e\u003c/ul\u003e\u003cp\u003eYou'll be provided a cell array of strings indicating the rupees that Link has picked up in his recent adventures. Write a function to return the total value of rupees that he has accumulated in his wallet.\u003c/p\u003e\u003cp\u003eThis problem is related to \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3026-zelda-rupee-count-compact\"\u003eProblem 3026\u003c/a\u003e and \u003ca href = \"https://www.mathworks.com/matlabcentral/cody/problems/3027-zelda-rupee-count-item-purchase\"\u003eProblem 3027\u003c/a\u003e.\u003c/p\u003e","function_template":"function [c] = rupee_count(r_arr)\r\n\r\nc = 0;\r\n\r\nend\r\n","test_suite":"%%\r\nr_arr = {'Green','Blue','Yellow','Red','Purple','Orange','Silver','Big green','Big blue','Big red','Big gold'};\r\nc_corr = 1036;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_arr = {'Green','Blue','Yellow','Green','Green','Green','Green','Red','Green','Green','Green','Blue','Blue','Yellow','Yellow','Green','Green','Blue','Green','Blue','Yellow','Green','Green','Blue','Green','Blue','Green','Green'};\r\nc_corr = 111;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_arr = {'Green','Blue','Yellow','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Green','Yellow'};\r\nc_corr = 44;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_arr = {'Green','Big green','Big blue','Red','Silver'};\r\nc_corr = 371;\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n\r\n%%\r\nr_ref = {'Green','Blue','Yellow','Red','Purple','Orange','Silver','Big green','Big blue','Big red','Big gold'};\r\nr_v = [1,5,10,20,50,100,200,50,100,200,300];\r\nc_corr = 5;\r\nn_r = randi(100);\r\nr_arr{1} = 'Blue';\r\nfor i = 2:n_r\r\n\tind_r = randi(11);\r\n\tr_arr{i} = r_ref{ind_r};\r\n\tc_corr = c_corr + r_v(ind_r);\r\nend\r\nassert(isequal(rupee_count(r_arr),c_corr));\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":26769,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":72,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":32,"created_at":"2015-02-18T03:36:32.000Z","updated_at":"2026-03-19T20:02:15.000Z","published_at":"2015-02-18T03:36:32.000Z","restored_at":"2017-09-28T06:14:47.000Z","restored_by":null,"spam":false,"simulink":false,"admin_reviewed":true,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRupees are the main currency in The Legend of Zelda games. The value of each rupee is determined by its color. Unfortunately, the rupee denomenations are somewhat different across the games. For the purposes of this problem, we'll assume the following values:\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGreen = 1\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBlue = 5\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYellow = 10\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eRed = 20\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003ePurple = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eOrange = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSilver = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig green = 50\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig blue = 100\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig red = 200\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eBig gold = 300\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eYou'll be provided a cell array of strings indicating the rupees that Link has picked up in his recent adventures. Write a function to return the total value of rupees that he has accumulated in his wallet.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThis problem is related to\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3026-zelda-rupee-count-compact\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3026\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e and\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/cody/problems/3027-zelda-rupee-count-item-purchase\\\"\u003e\u003cw:r\u003e\u003cw:t\u003eProblem 3027\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:t\u003e.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":2270,"title":"Bit calculation","description":"Give me the count of numbers from 1 to n having their last two bits as 0.\r\n\r\nFor example\r\n\r\nfunction y = ret_count(4)\r\n\r\n  y = x;\r\n\r\nend\r\n\r\nHere 4 means you have to check the numbers between 1 to 4.\r\n\r\n\r\nSo the answer will be 1 as binary value of 4 is 00000100.\r\n\r\nHere n in the function is the number of numbers to be checked starting from 1.","description_html":"\u003cp\u003eGive me the count of numbers from 1 to n having their last two bits as 0.\u003c/p\u003e\u003cp\u003eFor example\u003c/p\u003e\u003cp\u003efunction y = ret_count(4)\u003c/p\u003e\u003cpre class=\"language-matlab\"\u003ey = x;\r\n\u003c/pre\u003e\u003cp\u003eend\u003c/p\u003e\u003cp\u003eHere 4 means you have to check the numbers between 1 to 4.\u003c/p\u003e\u003cp\u003eSo the answer will be 1 as binary value of 4 is 00000100.\u003c/p\u003e\u003cp\u003eHere n in the function is the number of numbers to be checked starting from 1.\u003c/p\u003e","function_template":"function y = ret_count(n)\r\n  y = x;\r\nend","test_suite":"%%\r\nn = 1;\r\ny_correct = 0;\r\nassert(isequal(ret_count(n),y_correct))\r\n\r\n\r\n%%\r\nn = 4;\r\ny_correct = 1;\r\nassert(isequal(ret_count(n),y_correct))\r\n\r\n%%\r\nn = 72;\r\ny_correct = 18;\r\nassert(isequal(ret_count(n),y_correct))\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":1,"created_by":22816,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":243,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":45,"created_at":"2014-04-08T07:33:36.000Z","updated_at":"2026-03-10T17:18:51.000Z","published_at":"2014-04-08T07:33:36.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGive me the count of numbers from 1 to n having their last two bits as 0.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor example\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003efunction y = ret_count(4)\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[y = x;]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eend\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHere 4 means you have to check the numbers between 1 to 4.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eSo the answer will be 1 as binary value of 4 is 00000100.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHere n in the function is the number of numbers to be checked starting from 1.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":45246,"title":"Count digits","description":"Count total number of digits from 1 to n.\r\n\r\n* n=13\r\n* output=17\r\n\r\nsince from [1-9] total 9 digits.[10-13] total 4*2=8 digits.","description_html":"\u003cp\u003eCount total number of digits from 1 to n.\u003c/p\u003e\u003cul\u003e\u003cli\u003en=13\u003c/li\u003e\u003cli\u003eoutput=17\u003c/li\u003e\u003c/ul\u003e\u003cp\u003esince from [1-9] total 9 digits.[10-13] total 4*2=8 digits.\u003c/p\u003e","function_template":"function y=count_dig(n)\r\n  y = x;\r\nend","test_suite":"%%\r\nn = 13;\r\ny_correct = 17;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 1339;\r\ny_correct = 4249;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 0;\r\ny_correct = 0;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 299;\r\ny_correct = 789;\r\nassert(isequal(count_dig(n),y_correct))\r\n%%\r\nn = 10000;\r\ny_correct = 38894;\r\nassert(isequal(count_dig(n),y_correct))\r\n%\r\nn=10000675820025;\r\ny_correct = 128898350369253;\r\nassert(isequal(count_dig(n),y_correct))","published":true,"deleted":false,"likes_count":3,"comments_count":3,"created_by":363598,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":30,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":1,"created_at":"2019-12-26T23:42:51.000Z","updated_at":"2025-08-23T21:14:18.000Z","published_at":"2019-12-26T23:43:25.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCount total number of digits from 1 to n.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003en=13\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"ListParagraph\\\"/\u003e\u003cw:numPr\u003e\u003cw:numId w:val=\\\"1\\\"/\u003e\u003c/w:numPr\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eoutput=17\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003esince from [1-9] total 9 digits.[10-13] total 4*2=8 digits.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":138,"title":"Number of 1s in the Binary Representation of a Number","description":"*Description*\r\n\r\nReturn the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.\r\n\r\n*Example*\r\n\r\n   in = 215\r\n   out = 6 ","description_html":"\u003cp\u003e\u003cb\u003eDescription\u003c/b\u003e\u003c/p\u003e\u003cp\u003eReturn the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.\u003c/p\u003e\u003cp\u003e\u003cb\u003eExample\u003c/b\u003e\u003c/p\u003e\u003cpre\u003e   in = 215\r\n   out = 6 \u003c/pre\u003e","function_template":"function y = your_fcn_name(x)\r\n  y = x;\r\nend","test_suite":"%%\r\nx = 0;\r\ny_correct = 0;\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n\r\n%%\r\nx = 215;\r\ny_correct = 6;\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n\r\n%%\r\nx = 1:100;\r\ny_correct = [1 1 2 1 2 2 3 1 2 2 3 2 3 3 4 1 2 2 3 2 3 3 4 2 3 3 4 3 4 4 5 1 2 2 3 2 3 3 4 2 3 3 4 3 4 4 5 2 3 3 4 3 4 4 5 3 4 4 5 4 5 5 6 1 2 2 3 2 3 3 4 2 3 3 4 3 4 4 5 2 3 3 4 3 4 4 5 3 4 4 5 4 5 5 6 2 3 3 4 3];\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n\r\n%%\r\nx = magic(10);\r\ny_correct = [ 4  4  1  1  4  3  3  4  4  2\r\n              3  2  3  3  1  3  5  4  1  3\r\n              1  3  3  2  3  4  3  6  3  5\r\n              4  5  3  3  2  4  5  3  4  3\r\n              4  5  3  1  2  5  2  4  3  2\r\n              2  2  3  4  4  3  3  3  2  2\r\n              4  2  3  4  5  2  4  1  4  2\r\n              5  2  3  6  3  4  5  3  4  2\r\n              2  2  5  2  4  3  3  3  4  4\r\n              3  2  3  4  3  2  4  3  4  5 ];\r\nassert(isequal(your_fcn_name(x),y_correct))\r\n","published":true,"deleted":false,"likes_count":4,"comments_count":2,"created_by":134,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":481,"test_suite_updated_at":"2012-01-28T08:41:00.000Z","rescore_all_solutions":false,"group_id":38,"created_at":"2012-01-28T08:41:00.000Z","updated_at":"2026-03-31T17:35:59.000Z","published_at":"2012-01-28T08:41:00.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"targetMode\":\"\",\"relationshipId\":\"rId1\",\"target\":\"/matlab/document.xml\"},{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/output\",\"targetMode\":\"\",\"relationshipId\":\"rId2\",\"target\":\"/matlab/output.xml\"}],\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"relationship\":[],\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\\n\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eDescription\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eReturn the number of 1s in the (unsigned integer) binary representation of a number. This function should be able to provide vectorized input and return an output with the same dimensions as the input.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eExample\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[   in = 215\\n   out = 6]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\"},{\"partUri\":\"/matlab/output.xml\",\"contentType\":\"text/xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"no\\\" ?\u003e\u003cembeddedOutputs\u003e\u003cmetaData\u003e\u003cevaluationState\u003emanual\u003c/evaluationState\u003e\u003clayoutState\u003ecode\u003c/layoutState\u003e\u003coutputStatus\u003eready\u003c/outputStatus\u003e\u003c/metaData\u003e\u003coutputArray type=\\\"array\\\"/\u003e\u003cregionArray type=\\\"array\\\"/\u003e\u003c/embeddedOutputs\u003e\"}]}"},{"id":45365,"title":"Count the days","description":"Count the occurrence of a particular day (e.g. Monday) for a given duration.","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.4333px; min-height: 0px; white-space: normal; color: rgb(0, 0, 0); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: rgb(0, 0, 0); white-space: normal; \"\u003e\u003cdiv style=\"block-size: 21px; display: block; min-width: 0px; padding-block-start: 0px; padding-top: 0px; perspective-origin: 407px 10.5px; transform-origin: 407px 10.5px; vertical-align: baseline; \"\u003e\u003cdiv style=\"font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 10.5px; text-align: left; transform-origin: 384px 10.5px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 239px 8px; transform-origin: 239px 8px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eCount the occurrence of a particular day (e.g. Monday) for a given duration.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function y = count_days_2(year,day)\r\n  y = x;\r\nend","test_suite":"%%\r\nassert(isequal(count_days_2([2010:2020],'Fri'),574))\r\n%%\r\nassert(isequal(count_days_2([1910:2020],'Sat'),5792))\r\n%%\r\nassert(isequal( count_days_2([1942:1947],'Sun'),313))\r\n%%\r\nassert(isequal(count_days_2([1899:1912],'Wed'),730))\r\n%%\r\nassert(isequal(count_days_2([1798:1902],'Sun'),5478))\r\n%%\r\nassert(isequal(count_days_2(2012,'Mon'),53))\r\n","published":true,"deleted":false,"likes_count":3,"comments_count":0,"created_by":363598,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":65,"test_suite_updated_at":null,"rescore_all_solutions":false,"group_id":1,"created_at":"2020-03-15T19:12:07.000Z","updated_at":"2025-12-14T15:43:27.000Z","published_at":"2020-03-15T19:12:33.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eCount the occurrence of a particular day (e.g. Monday) for a given duration.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"},{"id":61058,"title":"5-year Annedversaries","description":"This is the Bonus Round problem for the 2025 Cody Contest. Attend the watch party on Friday, March 27 to see how 6 champions from the three contest teams solved this problem. For more information, see the announcement.\r\n\r\nIn a rare moment of wisdom, Lord Ned realized that he should reward his advisors for their years of service to Nedland. It also occurred to him that it might be insightful to determine the distribution of his advisors' tenures, to see if he is being counseled by a variety of perspectives. Unfortunately, he then reverted to (slightly insane) form and got overly carried away with the idea, decreeing that all his government departments must report the annual distribution of their staff tenures, going back the last 13 years. He wants the distribution binned into 5-year groups. That is, 0-4 years, 5-9 years, 10-14 years, and so on, up to the longest-serving official on staff for that department.\r\n\r\nHaving some familiarity with Lord Ned's eccentricities, his Minister of Egregious Summaries and Statistics realized that this reporting should be simple to automate, by someone with a little programming experience.\r\nGiven an n-by-2 matrix representing the start and end years of each staff member, return a 13-by-m matrix giving the number of staff members in each of the 5-year bins for each of the 13 years from 2013 to 2025.\r\nThe first column of the input gives the year each person started working for the department. The second column gives the year they left. If they are still working, the value in the second column will be NaN.\r\nFor the output matrix A, A(j,k) is the number of people in the jth year that have a tenure in the kth bin. The years are 2013 to 2025. The tenure bins are 0-4, 5-9, 10-14, etc. Therefore, A(j,k) is the number of people in year (2012+k) that have been employed between 5*(k-1) and (5*k - 1) years. A will always have 13 rows. The number of columns of A (m) will depend on the longest tenure of the department's staff members. This will depend on initial hire dates, some of which might be significantly before 2013.\r\nLord Ned has decreed that he wants an end-of-year report for each year. Therefore if someone leaves in the current year, they are not included in the count. Anyone who has joined in that year is counted, with a tenure rounded down to 0 years. Tenures continue to be rounded down, so if someone joined in 2010, in 2014 they are counted as a 4-year tenure.\r\nThese rules mean that, in the example image, the counts can be determined by looking at the colored bars immediately to the right of the dashed line that represents the year.\r\nExample\r\nyrs = [1999 2013;\r\n    2002 2022;\r\n    2005 2016;\r\n    2010 2016;\r\n    2013 NaN;\r\n    2016 2024;\r\n    2016 2023;\r\n    2022 NaN;\r\n    2023 NaN;\r\n    2024 NaN];\r\nIn 2013, there were four staff members. The longest serving staff member (14 years) left in this year and was replaced by someone new. Therefore for 2013, the tenures recorded are 11, 8, 3, 0, which means 2 people in 0-4 years, 1 in 5-9 years, 1 in 10-14.\r\nIn 2014, the tenures recorded are 12, 9, 4, 1, which gives the same distribution.\r\nIn 2015, the tenures are 13, 10, 5, 2, which means the distribution shifts to [1 1 2].\r\nIn 2016, two people leave and are replaced. Tenures of 14, 3, 0, 0 result in a distribution of [3 0 1].\r\nIn 2017, the tenures are 15, 4, 1, 1, which means the distribution is now [3 0 0 1] (for the first time, we have someone in the 15-19 year group).\r\nIn 2022, the staff member that started in 2002 left. This would have been their 20-year anniversary, but because they left, they are not counted in the 2022 report. No other staff member reaches a 20-year tenure, so the output matrix has four columns (0-4, 5-9, 10-14, 15-19).\r\nA = fiveyearcounts(yrs)\r\nA =\r\n     2     1     1     0\r\n     2     1     1     0\r\n     1     1     2     0\r\n     3     0     1     0\r\n     3     0     0     1\r\n     2     1     0     1\r\n     2     1     0     1\r\n     2     1     0     1\r\n     0     3     0     1\r\n     1     3     0     0\r\n     2     1     1     0\r\n     3     0     1     0\r\n     3     0     1     0     \r\nAssumptions\r\nThe report needs to work only for years 2013 to 2025. However, staff members may be hired any time before 2013, which means the output matrix can have any number of columns. The input matrix will not include staff members who left before 2013.","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.44px; min-height: 0px; white-space: normal; color: rgb(33, 33, 33); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: none; white-space: normal; \"\u003e\u003cdiv style=\"block-size: 1913px; display: block; min-width: 0px; padding-block-start: 0px; padding-inline-start: 2px; padding-left: 2px; padding-top: 0px; perspective-origin: 468.5px 956.5px; transform-origin: 468.5px 956.5px; vertical-align: baseline; \"\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eThis is the Bonus Round problem for the \u003c/span\u003e\u003c/span\u003e\u003ca target='_blank' href = \"https://www.mathworks.com/matlabcentral/contests/cody-contest-2025.html\"\u003e\u003cspan style=\"border-block-end-color: rgb(0, 91, 130); border-block-start-color: rgb(0, 91, 130); border-bottom-color: rgb(0, 91, 130); border-inline-end-color: rgb(0, 91, 130); border-inline-start-color: rgb(0, 91, 130); border-left-color: rgb(0, 91, 130); border-right-color: rgb(0, 91, 130); border-top-color: rgb(0, 91, 130); caret-color: rgb(0, 91, 130); color: rgb(0, 91, 130); column-rule-color: rgb(0, 91, 130); outline-color: rgb(0, 91, 130); text-decoration-color: rgb(0, 91, 130); text-emphasis-color: rgb(0, 91, 130); \"\u003e\u003cspan style=\"font-style: italic; \"\u003e2025 Cody Contest\u003c/span\u003e\u003c/span\u003e\u003c/a\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003e. Attend the \u003c/span\u003e\u003c/span\u003e\u003ca target='_blank' href = \"https://teams.microsoft.com/meet/27032540699600?p=Aen4hOpVieReYuEwhw\"\u003e\u003cspan style=\"border-block-end-color: rgb(0, 91, 130); border-block-start-color: rgb(0, 91, 130); border-bottom-color: rgb(0, 91, 130); border-inline-end-color: rgb(0, 91, 130); border-inline-start-color: rgb(0, 91, 130); border-left-color: rgb(0, 91, 130); border-right-color: rgb(0, 91, 130); border-top-color: rgb(0, 91, 130); caret-color: rgb(0, 91, 130); color: rgb(0, 91, 130); column-rule-color: rgb(0, 91, 130); outline-color: rgb(0, 91, 130); text-decoration-color: rgb(0, 91, 130); text-emphasis-color: rgb(0, 91, 130); \"\u003e\u003cspan style=\"font-style: italic; \"\u003ewatch party on Friday, March 27\u003c/span\u003e\u003c/span\u003e\u003c/a\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003e to see how 6 champions from the three contest teams solved this problem. For more information, see the \u003c/span\u003e\u003c/span\u003e\u003ca target='_blank' href = \"https://www.mathworks.com/matlabcentral/discussions/contest-channels/887048?s_tid=feature_matlabanswers\"\u003e\u003cspan style=\"border-block-end-color: rgb(0, 91, 130); border-block-start-color: rgb(0, 91, 130); border-bottom-color: rgb(0, 91, 130); border-inline-end-color: rgb(0, 91, 130); border-inline-start-color: rgb(0, 91, 130); border-left-color: rgb(0, 91, 130); border-right-color: rgb(0, 91, 130); border-top-color: rgb(0, 91, 130); caret-color: rgb(0, 91, 130); color: rgb(0, 91, 130); column-rule-color: rgb(0, 91, 130); outline-color: rgb(0, 91, 130); text-decoration-color: rgb(0, 91, 130); text-emphasis-color: rgb(0, 91, 130); \"\u003e\u003cspan style=\"font-style: italic; \"\u003eannouncement\u003c/span\u003e\u003c/span\u003e\u003c/a\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003e.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 105px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 52.5px; text-align: left; transform-origin: 444.5px 52.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn a rare moment of wisdom, Lord Ned realized that he should reward his advisors for their years of service to Nedland. It also occurred to him that it might be insightful to determine the distribution of his advisors' tenures, to see if he is being counseled by a variety of perspectives. Unfortunately, he then reverted to (slightly insane) form and got overly carried away with the idea, decreeing that all his government departments must report the annual distribution of their staff tenures, going back the last 13 years. He wants the distribution binned into 5-year groups. That is, 0-4 years, 5-9 years, 10-14 years, and so on, up to the longest-serving official on staff for that department.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 544px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 272px; text-align: left; transform-origin: 444.5px 272px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cimg class=\"imageNode\" width=\"780\" height=\"538\" style=\"vertical-align: baseline;width: 780px;height: 538px\" src=\"data:image/png;base64,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WlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAeyhet/LmabvllgXLDXJDy81lbFpVrqIIsIevIW+eJrepCpYb5IavX7/+9ttvv+UyNu0UWpGrKAIAfJ5cxO5d/vnnKYoAAF25iN27/PPPUxQBALpyEbt3+eefpygCAHTlInbv8s8/T1EEAOjKReze5Z9/nqIIANCVi9i9yz//PEURYLkvIW+eJrepCpYb5IYvX778+uuvv+YyNu0UWpGrKALsofjzf/PmabvllgXLDXJDy81lbFpVrqIIsIfidStvnrZbblmw3CA3tNxcxqZV5SqKAHsoXrfy5mm75ZYFyw1yQ8vNZWxaVa6iCLCH4nUrb562W25ZsNwgN7TcXMamVeUqigB7KF638uZpu+WWBcsNckPLzWVsWlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAe/gl5M3T5DZVwXKD3PDLL7/885///GcuY9NOoRW5iiIAwOfJReze5Z9/nqIIANCVi9i9yz//PEURAKArF7F7l3/+eYoiAEBXLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAZYr/LQOuSdVwXKD3ODjcRRFgArFn/+bN0/bLbcsWG6QG1puLmPTqnIVRYA9FK9befO03XLLguUGuaHl5jI2rSpXUQTYQ/G6lTdP2y23LFhukBtabi5j06pyFUWAPRSvW3nztN1yy4LlBrmh5eYyNq0qV1EE2EPxupU3T9sttyxYbpAbWm4uY9OqchVFgD0Ur1t587TdcsuC5Qa5oeXmMjatKldRBNjDl5A3T5PbVAXLDXLDly9ffv31119zGZt2Cq3IVRQBAD5PLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAQC6chG7d/nnn6coAgB05SJ27/LPP09RBADoykXs3uWff56iCLDc15A3T5PbVAXLDXLD169ff/vtt99yGZt2Cq3IVRQB9lD8+b9587TdcsuC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIA0KUoAgDQpSgCLFf1MWlym6pg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\" alt=\"A Gantt-chart-style visualization of \" data-image-state=\"image-loaded\"\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eHaving some familiarity with Lord Ned's eccentricities, his Minister of Egregious Summaries and Statistics realized that this reporting should be simple to automate, by someone with a little programming experience.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eGiven an \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003en\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e-by-2 matrix representing the start and end years of each staff member, return a 13-by-\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003em\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e matrix giving the number of staff members in each of the 5-year bins for each of the 13 years from 2013 to 2025.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eThe first column of the input gives the year each person started working for the department. The second column gives the year they left. If they are still working, the value in the second column will be \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; \"\u003eNaN\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 84px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 42px; text-align: left; transform-origin: 444.5px 42px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eFor the output matrix \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e, \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e(\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ej\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e,\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) is the number of people in the \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ej\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eth\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e year that have a tenure in the \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eth\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e bin. The years are 2013 to 2025. The tenure bins are 0-4, 5-9, 10-14, etc. Therefore, \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e(\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ej\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e,\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) is the number of people in year (2012+\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) that have been employed between 5*(\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e-1) and (5*\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003ek\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e - 1) years. \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e will always have 13 rows. The number of columns of \u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003eA\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e (\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-style: italic; \"\u003em\u003c/span\u003e\u003c/span\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003e) will depend on the longest tenure of the department's staff members. This will depend on initial hire dates, some of which might be significantly before 2013.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 63px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 31.5px; text-align: left; transform-origin: 444.5px 31.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eLord Ned has decreed that he wants an end-of-year report for each year. Therefore if someone leaves in the current year, they are not included in the count. Anyone who has joined in that year is counted, with a tenure rounded down to 0 years. Tenures continue to be rounded down, so if someone joined in 2010, in 2014 they are counted as a 4-year tenure.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eThese rules mean that, in the example image, the counts can be determined by looking at the colored bars immediately to the right of the dashed line that represents the year.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-weight: 700; \"\u003eExample\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgb(247, 247, 247); block-size: 180px; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-end-end-radius: 4px; border-end-start-radius: 4px; border-start-end-radius: 4px; border-start-start-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; margin-block-end: 10px; margin-block-start: 10px; margin-bottom: 10px; margin-inline-end: 3px; margin-inline-start: 3px; margin-left: 3px; margin-right: 3px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 464.5px 90px; transform-origin: 464.5px 90px; margin-left: 3px; margin-top: 10px; margin-bottom: 10px; \"\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003eyrs = [1999 2013;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2002 2022;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2005 2016;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2010 2016;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2013 NaN;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2016 2024;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2016 2023;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2022 NaN;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2023 NaN;\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e    2024 NaN];\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 10px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 10px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2013, there were four staff members. The longest serving staff member (14 years) left in this year and was replaced by someone new. Therefore for 2013, the tenures recorded are 11, 8, 3, 0, which means 2 people in 0-4 years, 1 in 5-9 years, 1 in 10-14.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2014, the tenures recorded are 12, 9, 4, 1, which gives the same distribution.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2015, the tenures are 13, 10, 5, 2, which means the distribution shifts to [1 1 2].\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2016, two people leave and are replaced. Tenures of 14, 3, 0, 0 result in a distribution of [3 0 1].\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2017, the tenures are 15, 4, 1, 1, which means the distribution is now [3 0 0 1] (for the first time, we have someone in the 15-19 year group).\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eIn 2022, the staff member that started in 2002 left. This would have been their 20-year anniversary, but because they left, they are not counted in the 2022 report. No other staff member reaches a 20-year tenure, so the output matrix has four columns (0-4, 5-9, 10-14, 15-19).\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgb(247, 247, 247); block-size: 270px; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-end-end-radius: 4px; border-end-start-radius: 4px; border-start-end-radius: 4px; border-start-start-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; margin-block-end: 10px; margin-block-start: 10px; margin-bottom: 10px; margin-inline-end: 3px; margin-inline-start: 3px; margin-left: 3px; margin-right: 3px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 464.5px 135px; transform-origin: 464.5px 135px; margin-left: 3px; margin-top: 10px; margin-bottom: 10px; \"\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003eA = fiveyearcounts(yrs)\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003eA =\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     1     1     2     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     0     3     0     1\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     1     3     0     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     2     1     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     1     0\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"background-color: rgba(0, 0, 0, 0); block-size: 18px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-end-color: rgb(233, 233, 233); border-inline-end-style: solid; border-inline-end-width: 1px; border-inline-start-color: rgb(233, 233, 233); border-inline-start-style: solid; border-inline-start-width: 1px; border-left-color: rgb(233, 233, 233); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(233, 233, 233); border-right-style: solid; border-right-width: 1px; border-start-end-radius: 0px; border-start-start-radius: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; font-family: Menlo, Monaco, Consolas, \u0026quot;Courier New\u0026quot;, monospace; line-height: 18.004px; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-inline-start: 4px; padding-left: 4px; perspective-origin: 464.5px 9px; text-wrap-mode: nowrap; transform-origin: 464.5px 9px; \"\u003e\u003cspan style=\"block-size: auto; border-inline-end-color: rgb(33, 33, 33); border-inline-end-style: none; border-inline-end-width: 0px; border-inline-start-color: rgb(33, 33, 33); border-inline-start-style: none; border-inline-start-width: 0px; border-left-color: rgb(33, 33, 33); border-left-style: none; border-left-width: 0px; border-right-color: rgb(33, 33, 33); border-right-style: none; border-right-width: 0px; display: inline; margin-inline-end: 45px; margin-right: 45px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 0px 0px; tab-size: 4; transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: preserve; \"\u003e\u003cspan style=\"margin-inline-end: 0px; margin-right: 0px; \"\u003e     3     0     1     0     \u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 21px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 10px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 10px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 10.5px; text-align: left; transform-origin: 444.5px 10.5px; white-space-collapse: preserve; margin-left: 4px; margin-top: 10px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"font-weight: 700; \"\u003eAssumptions\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003cdiv style=\"block-size: 42px; font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; padding-inline-start: 0px; padding-left: 0px; perspective-origin: 444.5px 21px; text-align: left; transform-origin: 444.5px 21px; white-space-collapse: preserve; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; unicode-bidi: normal; \"\u003e\u003cspan style=\"\"\u003eThe report needs to work only for years 2013 to 2025. However, staff members may be hired any time before 2013, which means the output matrix can have any number of columns. The input matrix will not include staff members who left before 2013.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function A = fiveyearcounts(yrs)\r\n  A = yrs;\r\nend","test_suite":"%% Test case #1\r\nyrs = [1997 NaN;1999 2022;2000 NaN;2000 2017;2005 2015;2008 2015;2011 2017;2013 NaN;2015 NaN;2015 NaN;2015 2018;2017 NaN;2017 NaN;2018 NaN;2022 2024;2022 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 2 3 1 0 0;2 2 2 2 0 0;5 0 0 4 0 0;4 1 0 4 0 0;6 0 0 2 1 0;5 1 0 2 1 0;5 1 0 1 2 0;3 3 0 0 3 0;3 3 0 0 3 0;3 5 0 0 1 1;2 5 1 0 1 1;2 5 1 0 1 1;2 3 3 0 0 2];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #2\r\nyrs = [1993 2017;2001 2021;2004 2014;2009 2014;2011 2014;2011 NaN;2013 2013;2013 2017;2013 NaN;2014 2018;2014 NaN;2014 2019;2017 2018;2017 2018;2018 2019;2018 NaN;2018 2020;2019 2021;2019 NaN;2020 2022;2021 2023;2021 NaN;2022 NaN;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [5 1 1 0 1;6 0 1 0 1;6 0 1 0 1;5 1 0 1 1;6 1 0 1 0;5 2 0 1 0;4 3 0 1 0;4 3 0 1 0;5 2 1 0 0;5 2 1 0 0;4 2 2 0 0;3 2 3 0 0;3 2 3 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #3\r\nyrs = [1995 2015;1995 NaN;1997 2024;2002 2021;2009 NaN;2010 2021;2012 2016;2013 2019;2015 2022;2016 NaN;2019 NaN;2021 2023;2021 NaN;2022 NaN;2023 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [4 0 1 3 0 0 0;3 1 1 3 0 0 0;3 2 1 1 1 0 0;3 2 1 1 1 0 0;3 2 0 1 2 0 0;2 3 0 1 2 0 0;3 1 1 1 2 0 0;2 1 2 1 1 1 0;3 2 1 0 1 1 0;4 1 1 0 0 2 0;4 1 1 0 0 2 0;4 2 0 1 0 1 0;4 2 0 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #4\r\nyrs = [1997 2014;1998 2015;1999 2016;2007 2022;2014 NaN;2015 2017;2016 NaN;2017 2018;2018 2022;2022 NaN;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 1 1 2;1 1 0 2;2 1 0 1;3 1 0 0;3 0 1 0;3 0 1 0;2 1 1 0;2 1 1 0;1 2 1 0;2 2 0 0;2 2 0 0;2 1 1 0;2 1 1 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #5\r\nyrs = [1995 2023;1996 2015;1997 2013;1997 NaN;2005 2023;2006 NaN;2009 2013;2013 2019;2013 2017;2013 2017;2015 2019;2017 NaN;2017 NaN;2019 2023;2019 NaN;2023 NaN;2023 2024;2023 NaN;2023 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 2 0 3 0 0;3 2 0 3 0 0;4 1 1 1 1 0;4 0 2 1 1 0;4 0 2 0 2 0;3 1 2 0 2 0;4 0 2 0 2 0;4 0 1 1 1 1;4 0 0 2 1 1;2 2 0 2 0 2;5 2 0 1 0 1;4 3 0 1 0 1;4 3 0 1 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #6\r\nyrs = [1993 2017;1997 2014;2000 2015;2000 2019;2001 2013;2004 2013;2007 2020;2011 NaN;2013 NaN;2013 2017;2014 NaN;2015 2018;2017 NaN;2017 2019;2017 2019;2018 NaN;2019 NaN;2019 NaN;2019 NaN;2020 NaN;2021 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 1 2 1 1;4 1 2 0 1;5 1 0 1 1;4 2 0 1 1;6 1 1 1 0;5 2 1 1 0;5 3 1 0 0;6 3 0 0 0;7 2 1 0 0;6 3 1 0 0;5 3 2 0 0;2 5 3 0 0;1 6 3 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #7\r\nyrs = [1995 NaN;1997 2021;2002 2016;2002 2016;2005 2016;2006 2024;2010 2022;2011 NaN;2016 2022;2016 NaN;2016 NaN;2021 NaN;2022 NaN;2022 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 2 2 2 0 0 0;2 2 2 2 0 0 0;1 2 3 1 1 0 0;3 2 1 1 1 0 0;3 2 1 0 2 0 0;3 2 1 0 2 0 0;3 2 1 0 2 0 0;3 1 2 0 1 1 0;1 3 2 1 0 1 0;3 2 1 1 0 1 0;3 2 1 1 0 1 0;4 2 1 0 0 1 0;4 2 1 0 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #8\r\nyrs = [1998 NaN;2002 2015;2003 2018;2013 2015;2015 2016;2015 NaN;2016 NaN;2018 2019;2019 2022;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 0 2 1 0 0;1 0 2 1 0 0;2 0 1 1 0 0;2 0 1 1 0 0;2 0 1 1 0 0;3 0 0 0 1 0;3 0 0 0 1 0;2 1 0 0 1 0;1 2 0 0 1 0;1 2 0 0 1 0;1 2 0 0 0 1;1 2 0 0 0 1;1 1 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #9\r\nyrs = [1996 2016;1997 NaN;1998 NaN;2000 NaN;2015 NaN;2016 2018;2018 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 0 1 3 0 0;0 0 1 3 0 0;1 0 0 4 0 0;2 0 0 3 0 0;2 0 0 2 1 0;2 0 0 1 2 0;2 0 0 1 2 0;1 1 0 0 3 0;1 1 0 0 3 0;1 1 0 0 2 1;0 2 0 0 1 2;0 2 0 0 1 2;0 1 1 0 0 3];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #10\r\nyrs = [1993 2018;1994 2015;1994 2021;1995 2015;1997 2021;2004 2016;2005 NaN;2007 2018;2015 2017;2015 2019;2016 NaN;2017 NaN;2018 2023;2018 NaN;2019 NaN;2021 2024;2021 2024;2023 NaN;2024 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 3 0 4 1 0;0 2 1 2 3 0;2 1 2 1 2 0;3 1 1 1 2 0;3 0 2 0 3 0;5 0 1 0 2 0;5 0 1 0 1 1;5 0 0 1 1 1;6 1 0 1 0 0;5 2 0 1 0 0;4 3 0 1 0 0;3 4 0 1 0 0;3 4 0 0 1 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #11\r\nyrs = [1998 NaN;2004 2017;2005 2013;2006 2020;2013 NaN;2017 NaN;2020 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 2 0 1 0 0;1 1 1 1 0 0;1 1 1 1 0 0;1 0 2 1 0 0;2 0 1 1 0 0;1 1 1 0 1 0;1 1 1 0 1 0;2 1 0 0 1 0;2 1 0 0 1 0;1 2 0 0 1 0;1 1 1 0 0 1;1 1 1 0 0 1;0 2 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #12\r\nyrs = [1993 2019;1993 2023;1998 2021;2001 2018;2017 2018;2018 2020;2018 NaN;2019 NaN;2020 2021;2020 2022;2021 NaN;2021 NaN;2022 2023;2022 NaN;2023 NaN;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [0 0 1 1 2 0;0 0 1 1 2 0;0 0 1 1 2 0;0 0 0 2 2 0;1 0 0 2 2 0;2 0 0 0 1 2;3 0 0 0 1 1;4 0 0 0 1 1;5 0 0 0 0 1;6 0 0 0 0 1;6 1 0 0 0 0;5 2 0 0 0 0;5 2 0 0 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #13\r\nyrs = [1999 2020;2004 2023;2011 2019;2011 2013;2013 2016;2016 2020;2019 NaN;2020 2022;2020 NaN;2022 NaN;2023 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 1 1 0 0;2 0 1 1 0;2 0 1 1 0;1 1 1 1 0;1 1 1 1 0;1 1 1 1 0;2 0 0 1 1;3 0 0 1 0;3 0 0 1 0;3 0 0 1 0;4 0 0 0 0;4 1 0 0 0;3 2 0 0 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #14\r\nyrs = [1996 NaN;1996 2021;2001 NaN;2006 NaN;2007 2015;2008 2024;2009 NaN;2011 2014;2014 2019;2015 NaN;2019 NaN;2021 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 3 1 2 0 0;1 4 1 2 0 0;2 3 1 2 0 0;2 2 1 1 2 0;2 2 1 1 2 0;2 1 2 1 2 0;2 0 3 1 2 0;1 1 3 1 2 0;2 1 2 1 1 1;2 1 2 1 1 1;2 1 1 2 1 1;2 2 0 2 1 1;2 1 1 2 1 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #15\r\nyrs = [1996 2014;2002 NaN;2002 2020;2004 NaN;2008 2013;2011 2022;2012 2016;2013 2014;2013 NaN;2014 2020;2014 2024;2016 2021;2020 2022;2020 NaN;2021 2024;2022 NaN;2022 2024;2024 NaN;2024 NaN;2024 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [4 1 2 1 0;5 0 3 0 0;5 0 3 0 0;4 1 3 0 0;4 1 1 2 0;3 2 1 2 0;1 4 0 3 0;3 3 0 2 0;3 2 1 2 0;4 2 0 1 1;4 1 1 1 1;5 0 1 0 2;4 1 1 0 2];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #16\r\nyrs = [1993 2016;1995 2019;2006 2018;2009 NaN;2012 NaN;2013 2022;2016 2020;2017 2018;2018 NaN;2018 NaN;2019 NaN;2020 NaN;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 1 0 1 1;2 2 0 1 1;2 2 0 0 2;3 1 1 0 1;3 2 1 0 1;3 3 0 0 1;4 2 1 0 0;4 2 1 0 0;4 2 1 0 0;5 0 2 0 0;3 2 2 0 0;2 3 1 1 0;1 4 1 1 0];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #17\r\nyrs = [2001 2017;2002 NaN;2004 2022;2006 NaN;2009 2018;2013 NaN;2017 2021;2018 2022;2021 NaN;2022 NaN;2022 2023;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [2 2 2 0 0;1 2 3 0 0;1 2 3 0 0;1 1 3 1 0;2 1 2 1 0;2 1 2 1 0;2 1 1 2 0;2 1 1 2 0;2 1 0 3 0;3 1 0 1 1;3 0 1 1 1;3 0 1 1 1;3 0 1 1 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #18\r\nyrs = [1993 NaN;1996 2022;2006 NaN;2012 2016;2016 NaN;2016 2017;2017 2018;2018 2021;2021 2022;2022 NaN;2022 2023;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 1 0 1 1 0 0;1 1 0 1 1 0 0;1 1 0 1 1 0 0;2 0 1 0 2 0 0;2 0 1 0 2 0 0;2 0 1 0 1 1 0;2 0 1 0 1 1 0;2 0 1 0 1 1 0;1 1 0 1 0 2 0;2 1 0 1 0 1 0;2 1 0 1 0 0 1;2 1 0 1 0 0 1;2 1 0 1 0 0 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #19\r\nyrs = [1994 2022;1995 NaN;1996 NaN;2001 NaN;2007 2018;2012 NaN;2014 2017;2015 NaN;2017 NaN;2018 2019;2019 NaN;2022 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [1 1 1 3 0 0 0;2 1 1 2 1 0 0;3 1 1 1 2 0 0;3 1 0 1 3 0 0;2 1 1 1 3 0 0;3 1 0 1 3 0 0;3 1 0 1 2 1 0;2 2 0 1 1 2 0;2 2 0 0 1 3 0;2 2 1 0 1 2 0;2 2 1 0 1 2 0;1 3 1 0 1 2 0;1 2 2 0 1 1 1];\r\nassert(isequal(A,Asol))\r\n\r\n%% Test case #20\r\nyrs = [1993 NaN;1994 NaN;1999 NaN;2004 NaN;2005 2016;2010 2022;2013 2020;2013 2013;2013 2019;2016 2023;2019 2021;2020 NaN;2021 2022;2022 NaN;2022 NaN;2023 NaN;2023 NaN];\r\nA = fiveyearcounts(yrs);\r\nAsol = [3 2 1 1 1 0 0;3 1 1 1 2 0 0;2 1 2 1 2 0 0;3 1 1 1 2 0 0;3 1 1 1 2 0 0;1 3 1 1 1 1 0;2 2 0 1 1 2 0;3 0 1 1 1 2 0;2 1 1 1 1 2 0;3 1 0 1 1 2 0;5 0 0 1 1 1 1;5 0 0 0 1 1 2;4 1 0 0 1 1 2];\r\nassert(isequal(A,Asol))","published":true,"deleted":false,"likes_count":2,"comments_count":2,"created_by":287,"edited_by":47495,"edited_at":"2026-03-13T16:28:14.000Z","deleted_by":null,"deleted_at":null,"solvers_count":19,"test_suite_updated_at":"2025-11-12T15:35:41.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2025-11-04T20:23:24.000Z","updated_at":"2026-03-30T15:20:12.000Z","published_at":"2026-03-13T12:17:42.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eThis is the Bonus Round problem for the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/contests/cody-contest-2025.html\\\"\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e2025 Cody Contest\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e. Attend the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://teams.microsoft.com/meet/27032540699600?p=Aen4hOpVieReYuEwhw\\\"\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ewatch party on Friday, March 27\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e to see how 6 champions from the three contest teams solved this problem. For more information, see the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:hyperlink w:docLocation=\\\"https://www.mathworks.com/matlabcentral/discussions/contest-channels/887048?s_tid=feature_matlabanswers\\\"\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eannouncement\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:hyperlink\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003e.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn a rare moment of wisdom, Lord Ned realized that he should reward his advisors for their years of service to Nedland. It also occurred to him that it might be insightful to determine the distribution of his advisors' tenures, to see if he is being counseled by a variety of perspectives. Unfortunately, he then reverted to (slightly insane) form and got overly carried away with the idea, decreeing that all his government departments must report the annual distribution of their staff tenures, going back the last 13 years. He wants the distribution binned into 5-year groups. That is, 0-4 years, 5-9 years, 10-14 years, and so on, up to the longest-serving official on staff for that department.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:customXml w:element=\\\"image\\\"\u003e\u003cw:customXmlPr\u003e\u003cw:attr w:name=\\\"height\\\" w:val=\\\"538\\\"/\u003e\u003cw:attr w:name=\\\"width\\\" w:val=\\\"780\\\"/\u003e\u003cw:attr w:name=\\\"verticalAlign\\\" w:val=\\\"baseline\\\"/\u003e\u003cw:attr w:name=\\\"altText\\\" w:val=\\\"A Gantt-chart-style visualization of \\\"/\u003e\u003cw:attr w:name=\\\"relationshipId\\\" w:val=\\\"rId1\\\"/\u003e\u003c/w:customXmlPr\u003e\u003c/w:customXml\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eHaving some familiarity with Lord Ned's eccentricities, his Minister of Egregious Summaries and Statistics realized that this reporting should be simple to automate, by someone with a little programming experience.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eGiven an \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003en\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e-by-2 matrix representing the start and end years of each staff member, return a 13-by-\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003em\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e matrix giving the number of staff members in each of the 5-year bins for each of the 13 years from 2013 to 2025.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThe first column of the input gives the year each person started working for the department. The second column gives the year they left. If they are still working, the value in the second column will be \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:rFonts w:cs=\\\"monospace\\\"/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eNaN\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eFor the output matrix \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e, \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e(\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ej\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e,\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) is the number of people in the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ej\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003eth\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e year that have a tenure in the \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003eth\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e bin. The years are 2013 to 2025. The tenure bins are 0-4, 5-9, 10-14, etc. Therefore, \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e(\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ej\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e,\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) is the number of people in year (2012+\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) that have been employed between 5*(\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e-1) and (5*\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003ek\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e - 1) years. \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e will always have 13 rows. The number of columns of \u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eA\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e (\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:i/\u003e\u003c/w:rPr\u003e\u003cw:t\u003em\u003c/w:t\u003e\u003c/w:r\u003e\u003cw:r\u003e\u003cw:t\u003e) will depend on the longest tenure of the department's staff members. This will depend on initial hire dates, some of which might be significantly before 2013.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eLord Ned has decreed that he wants an end-of-year report for each year. Therefore if someone leaves in the current year, they are not included in the count. Anyone who has joined in that year is counted, with a tenure rounded down to 0 years. Tenures continue to be rounded down, so if someone joined in 2010, in 2014 they are counted as a 4-year tenure.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThese rules mean that, in the example image, the counts can be determined by looking at the colored bars immediately to the right of the dashed line that represents the year.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eExample\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[yrs = [1999 2013;\\n    2002 2022;\\n    2005 2016;\\n    2010 2016;\\n    2013 NaN;\\n    2016 2024;\\n    2016 2023;\\n    2022 NaN;\\n    2023 NaN;\\n    2024 NaN];]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2013, there were four staff members. The longest serving staff member (14 years) left in this year and was replaced by someone new. Therefore for 2013, the tenures recorded are 11, 8, 3, 0, which means 2 people in 0-4 years, 1 in 5-9 years, 1 in 10-14.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2014, the tenures recorded are 12, 9, 4, 1, which gives the same distribution.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2015, the tenures are 13, 10, 5, 2, which means the distribution shifts to [1 1 2].\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2016, two people leave and are replaced. Tenures of 14, 3, 0, 0 result in a distribution of [3 0 1].\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2017, the tenures are 15, 4, 1, 1, which means the distribution is now [3 0 0 1] (for the first time, we have someone in the 15-19 year group).\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eIn 2022, the staff member that started in 2002 left. This would have been their 20-year anniversary, but because they left, they are not counted in the 2022 report. No other staff member reaches a 20-year tenure, so the output matrix has four columns (0-4, 5-9, 10-14, 15-19).\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"code\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003e\u003c![CDATA[A = fiveyearcounts(yrs)\\nA =\\n     2     1     1     0\\n     2     1     1     0\\n     1     1     2     0\\n     3     0     1     0\\n     3     0     0     1\\n     2     1     0     1\\n     2     1     0     1\\n     2     1     0     1\\n     0     3     0     1\\n     1     3     0     0\\n     2     1     1     0\\n     3     0     1     0\\n     3     0     1     0     ]]\u003e\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:rPr\u003e\u003cw:b/\u003e\u003c/w:rPr\u003e\u003cw:t\u003eAssumptions\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eThe report needs to work only for years 2013 to 2025. However, staff members may be hired any time before 2013, which means the output matrix can have any number of columns. The input matrix will not include staff members who left before 2013.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/image\",\"target\":\"/media/image1.png\",\"relationshipId\":\"rId1\"}]},{\"partUri\":\"/media/image1.png\",\"contentType\":\"image/png\",\"content\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAACigAAAcACAMAAAB316kOAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACQUExURf///////7+/v39/f9/f35+fn9HR0YTikYPL64GltYK40ICSmuWe3bKOrsyWxpiHl4GxiIPJjYCYg6ioqL29vZOTk8PDw0dHRwAAAImJiWaTVp8/P06nLsAAAICAgEBAQJ6enk9PT2+MZZRWVnBwcDo6OqCgoGWtbyU/KEd5TmSbtCQ5QUZtfntVd0AsPq95qZ5TBe4AAAABdFJOU/4a4wd9AAAACXBIWXMAADLAAAAywAEoZFrbAADAcUlEQVR4Xuz96XojSZIt2N6Kds86mdmnTw4R7uF36L5Dje//gvcDREkCAlXjoCoMqGOtPxU0mGyybIDuBEj4/+3/BgAAPf8CAAC3FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURYDlfgl58zS5TVWw3CA37JZbQlEEWO5/C3nzNLlNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5b6EvHma3KYqWG6QG3bLLaEoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIA0KUoAiz3NeTN0+Q2VcFyg9ywW24JRRFguarP05XbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEAKBLUQQAoEtRBACgS1EEAKBLUQQAoEtRBACgS1EEAKBLUQRYrupj0uQ2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlvsa8uZpcpuqYLlBbtgtt4SiCABAl6IIAECXoggAQJeiCABAl6IIAECXoggAQJeiCLDcl5A3T5PbVAXLDXLDbrklFEWA5ao+T1duUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLlfQt48TW5TFSw3yA275ZZQFAEA6FIUAQDoUhQBAOhSFAEA6LqrovgntvSv7Ol/UCo/wQFsSFFkWu4fbCIXG9bKT3AAG1IUmZb7B5vIxYaF/vznP5d8+kXVp2rsllsWLDfIDbvlllAUmZb7B5vI3YaFqj5PV25TFSw3yA275ZZQFJmW+webyN2GharWAblNVbDcIDfslltCUWRa7h9sIncbFqpaB+Q2VcFyg9ywW24JRZFpuX+widxtWKhqHZDbVAXLDXLDbrklFEWm5f7BJnK3YaGqdUBuUxUsN8gNu+WWUBSZlvsHm8jdhoWq1gG5TVWw3CA37JZbQlFkWu4fbCJ3Gxb6y1/+8uXLly/5SW7aKVRuYbDcIDfslltCUWRa7h9sIncb1spPcAAbUhSZlvsHm8jFhrXyExzAhhRFpuX+wSZysWGt/AQHsCFFkWm5f7CJXGxYKz/BAWxIUWRa7h9sIhcb1spPcAAbUhSZlvsHm8jFhrXyExzAhhRFpuX+wSZysWGhv/71r1+/fv2an+SmnULlFgbLDXLDbrklFEWm5f7BJnK3YaGqz9OV21QFyw1yw265JRRFpuX+wSZyt2GhqnVAblMVLDfIDbvlllAUmZb7B5vI3YaFqtYBuU1VsNwgN+yWW0JRZFruH2widxsWqloH5DZVwXKD3LBbbglFkWm5f7CJ3G1YqGodkNtUBcsNcsNuuSUURabl/sEmcrdhoap1QG5TFSw3yA275ZZQFJmW+webyN2GtfITHMCGFEWm5f7BJnKxYa38BAewIUWRabl/sIlcbFgrP8EBbEhRZFruH2wiFxvWyk9wABtSFJmW+webyMWGtfITHMCGFEWm5f7BJnKxYa38BAewIUWRabl/sIlcbFgrP8EBbEhRZFruH2wiFxsWqvqYNLlNVbDcIDfslltCUWRa7h9sIncbFqpaB+Q2VcFyg9ywW24JRZFpuX+widxtWKhqHZDbVAXLDXLDbrklFEWm5f7BJnK3YaGqdUBuUxUsN8gNu+WWUBSZlvsHm8jdhoWq1gG5TVWw3CA37JZbQlFkWu4fbCJ3GxaqWgfkNlXBcoPcsFtuCUWRabl/sIncbVjor3/969evX7/mJ7lpp1C5hcFyg9ywW24JRZFpuX+widxtWCs/wQFsSFFkWu4fbCIXG9bKT3AAG1IUmZb7B5vIxYa18hMcwIYURabl/sEmcrFhrfwEB7AhRZFpuX+wiVxsWCs/wQFsSFFkWu4fbCIXG9bKT3AAG1IUmZb7B5vIxYaF/vKXv3z58uVLfpKbdgqVWxgsN8gNu+WWUBSZlvsHm8jdhoWqPk9XblMVLDfIDbvlllAUmZb7B5vI3YaFqtYBuU1VsNwgN+yWW+KuiiLAz6FqHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFjul5A3T5PbVAXLDXLDbrklFEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEWA5ao+/UJuUxUsN8gNu+WWUBQBlqv6PF25TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOW+hLx5mtymKlhukBt2yy2hKAIA0KUoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIs9zXkzdPkNlXBcoPcsFtuCUURYLmqz9OV21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBACgS1EEAKBLUQQAoEtRBACgS1EEAKBLUQQAoEtRBACgS1EEWK7qY9LkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZb7GvLmaXKbqmC5QW7YLbeEoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIAECXogiw3JeQN0+T21QFyw1yw265JRRFgOWqPk9XblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5X0LePE1uUxUsN8gNu+WWUBQBAOhSFO/Qn9jTv7Kl/8Ge/ne2lFc87p2ieIdy/2ATuYCwh9w/2EQuIOwhr3jcO0XxDuX+wSZyAWEPuX+wiVxA2ENe8bh3iuIdyv2DTeQCwh5y/2ATuYCwh7zice8UxTuU+webyAWEPeT+wSZyAWEPecXj3imKdyj3DzaRCwh7yP1jiT+HvHma3ObPf/7z//yf//N/5hIy7RQqtzS35GNhqj5uZrfcEoriHcr9g03kAsIecgVZon2ebt48TW7TgnMPmSY3FOfmVW+a3EKK4h3K/YNN5ALCHnIFWaKtA3nzNLlNC849ZJrcUJybV71pcgspinco9w82kQsIe8gVZIm2DuTN0+Q2LTj3kGlyQ3FuXvWmyS2kKN6h3D/YRC4g7CFXkCXaOpA3T5PbtODcQ6bJDcW5edWbJreQoniHcv9gE7mAsIdcQZZo60DePE1u04JzD5kmNxTn5lVvmtxCiuIdyv2DTeQCwh5yBVmirQN58zS5TQvOPWSa3FCcm1e9aXILKYp3KPcPNpELCHvIFWSJv4S8eZrc5i9/+cv/8X/8H/9H7iHTTqFyS3O/fPnyJa96006hcosoinco9w82kQsIe8gVhE3kDsIe8orHvVMU71DuH2wiFxD2kPsHm8gFhD3kFY97pyjeodw/2EQuIOwh9w82kQsIe8grHvdOUbxDuX+wiVxA2EPuH2wiFxD2kFc87p2ieIdy/2ATuYCwh9w/2EQuIOwhr3jcO0XxDuX+wSZyAWEPuX+wiVxA2ENe8bh3iuIdyv2DTeQCwh5y/1jiryFvnia3+etf//q//tf/+l+5hEw7hcotzf369evXvOpNO4XKLaIo3qHcP9hELiDsIVeQJdrn6ebN0+Q2LTj3kGlyQ3FuXvWmyS2kKN6h3D/YRC4g7CFXkCXaOpA3T5PbtODcQ6bJDcW5edWbJreQoniHcv9gE7mAsIdcQZZo60DePE1u04JzD5kmNxTn5lVvmtxCiuIdyv2DTeQCwh5yBVmirQN58zS5TQvOPWSa3FCcm1e9aXILKYp3KPcPNpELCHvIFWSJtg7kzdPkNi0495BpckNxbl71psktpCjeodw/2EQuIOwhV5Al2jqQN0+T27Tg3EOmyQ3FuXnVmya3kKJ4h3L/YBO5gLCHXEHYRO4g7CGveNw7RfEO5f7BJnIBYQ+5f7CJXEDYQ17xuHeK4h3K/YNN5ALCHnL/YBO5gLCHvOJx7xTFO5T7B5vIBYQ95P7BJnIBYQ95xePeKYp3KPcPNpELCHvI/YNN5ALCHvKKx71TFO9Q7h9sIhcQ9pD7B5vIBYQ95BWPe6co3qHcP9hELiDsIfcPNpELCHvIKx73TlG8Q7l/sIlcQNhD7h9LtI9Jy5unyW1acC4h0+SG4ty86k2TW0hRvEO5f7CJXEDYQ64gS7R1IG+eJrdpwbmHTJMbinPzqjdNbiFF8Q7l/sEmcgFhD7mCLNHWgbx5mtymBeceMk1uKM7Nq940uYUUxTuU+webyAWEPeQKskRbB/LmaXKbFpx7yDS5oTg3r3rT5BZSFO9Q7h9sIhcQ9pAryBJtHcibp8ltWnDuIdPkhuLcvOpNk1tIUbxDuX+wiVxA2EOuIEu0dSBvnia3acG5h0yTG4pz86o3TW4hRfEO5f7BJnIBYQ+5gizx15A3T5Pb/PWvf/1f/+t//a/cQ6adQuWW5n79+vVrXvWmnULlFlEU71DuH2wiFxD2kCsIm8gdhD3kFY97pyjeodw/2EQuIOwh9w82kQsIe8grHvdOUbxDuX+wiVxA2EPuH2wiFxD2kFc87p2ieIdy/2ATuYCwh9w/2EQuIOwhr3jcO0XxDuX+wSZyAWEPuX+wiVxA2ENe8bh3iuIdyv2DTeQCwh5y/2ATuYCwh7zice8URYDlvoS8eZrcpipYbpAbdsstoSgCLFf1ebpym6pguUFu2C23hKIIsFzVOiC3qQqWG+SG3XJLKIoAy1WtA3KbqmC5QW7YLbeEogiwXNU6ILepCpYb5IbdcksoigDLVa0DcpuqYLlBbtgtt4SiCLBc1Togt6kKlhvkht1ySyiKAMv9EvLmaXKbqmC5QW7YLbeEoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIAECXogiwXNWnX8htqoLlBrlht9wSiiLAclWfpyu3qQqWG+SG3XJLKIoAy1WtA3KbqmC5QW7YLbeEogiwXNU6ILepCpYb5IbdcksoigDLVa0DcpuqYLlBbtgtt4SiCLBc1Togt6kKlhvkht1ySyiKAMtVrQNym6pguUFu2C23hKIIsNyXkDdPk9tUBcsNcsNuuSUURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURYDlvoa8eZrcpipYbpAbdsstoSgCLFf1ebpym6pguUFu2C23hKIIsFzVOiC3qQqWG+SG3XJLKIoAy1WtA3KbqmC5QW7YLbeEogiwXNU6ILepCpYb5IbdcksoigDLVa0DcpuqYLlBbtgtt4SiCLBc1Togt6kKlhvkht1ySyiKAAB0KYoAAHQpigAAdCmKAAB0KYoAAHQpigAAdCmKAAB0KYoAy1V9TJrcpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAixXtQ7IbaqC5Qa5YbfcEooiwHJfQ948TW5TFSw3yA275ZZQFAEA6FIUAQDoUhQBAOhSFAEA6FIUAQDoUhQBAOhSFAGW+xLy5mlym6pguUFu2C23hKIIsFzV5+nKbaqC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKInfrT+zpX/nXf23rQN48rTj3f6xWth5WBcsNcsNuuSUURe5W7h9sIneQh/S3kDdPK8z985///Ofc86b9+c9//uWXX37JN/e8U2pFsNwgN+yWW0JR5G7l/sEmcgdhD7njrZJvbGAriiJ3K/cPNpELCHvIBW+VfGMDW1EUuVu5f7CJXEDYQy54q+QbG9iKosjdyv2DTeQCwh5ywVsl39jAVhRF7lbuH2wiFxD2kAveKvnGBraiKHK3cv9gE7mAsIdc8FbJNzawFUWRu5X7B5vIBeQhFX6MTVWuj8c5kRvkht1ySyiK3K3cP9hE7iAPqX2ebt48rTg397xpZZ8rXBUsN8gNu+WWUBS5W7l/sIncQR5SWwfy5mnFubnnTStbD6uC5Qa5YbfcEooidyv3DzaRO8hDautA3jytODf3vGll62FVsNwgN+yWW0JR5G7l/sEmcgd5SG0dyJunFefmnjetbD2sCpYb5Ibdcksoityt3D/YRO4gD6mtA3nztOLc3POmla2HVcFyg9ywW24JRZG7lfsHm8gd5CG1dSBvnlacm3vetLL1sCpYbpAbdsstoShyt3L/YBO5gzykv4e8eVph7l/+8pe/5J437S9/+cuXL1++5Jt73im1IlhukBt2yy2hKHK3cv9gE7mDsIfc8VbJNzawFUWRu5X7B5vIBYQ95IK3Sr6xga0oityt3D/YRC4g7CEXvFXyjQ1sRVHkbuX+wSZyAWEPueCtkm9sYCuKIncr9w82kQsIe8gFb5V8YwNbURS5W7l/sIlcQNhDLnir5Bsb2IqiyN3K/YNN5ALykP4R8uZphbl//etf/5pL3rS//vWvX79+/Zpv7nmn1IpguUFu2C23hKLI3cr9g03kDvKQ2ufp5s3TinNzz5tW9rnCVcFyg9ywW24JRZG7lfsHm8gd5CG1dSBvnlacm3vetLL1sCpYbpAbdsstoShyt3L/YBO5gzyktg7kzdOKc3PPm1a2HlYFyw1yw265JRRF7lbuH2wid5CH1NaBvHlacW7uedPK1sOqYLlBbtgtt4SiyN3K/YNN5A7ykNo6kDdPK87NPW9a2XpYFSw3yA275ZZQFLlbuX+widxBHlJbB/LmacW5uedNK1sPq4LlBrlht9wSiiJ3K/cPNpE7CHvIHW+VfGMDW1EUuVu5f7CJXEDYQy54q+QbG9iKosjdyv2DTeQCwh5ywVsl39jAVhRF7lbuH2wiFxD2kAveKvnGBraiKHK3cv9gE7mAsIdc8FbJNzawFUWRu5X7B5vIBYQ95IK3Sr6xga0oityt3D/YRC4g7CEXvFXyjQ1sRVHkbuX+wSZyAXlI7WPS8uZpxbm55E0r+7i4qmC5QW7YLbeEosjdyv2DTeQO8pDaOpA3TyvOzT1vWtl6WBUsN8gNu+WWUBS5W7l/sIncQR5SWwfy5mnFubnnTStbD6uC5Qa5YbfcEooidyv3DzaRO8hDautA3jytODf3vGll62FVsNwgN+yWW0JR5G7l/sEmcgd5SG0dyJunFefmnjetbD2sCpYb5Ibdcksoityt3D/YRO4gD6mtA3nztOLc3POmla2HVcFyg9ywW24JRZG7lfsHm8gd5CH9I+TN0wpz//rXv/4197xpf/3rX79+/fo139zzTqkVwXKD3LBbbglFkbuV+webyB2EPeSOt0q+sYGtKIrcrdw/2EQuIOwhF7xV8o0NbEVR5G7l/sEmcgFhD7ngrZJvbGAriiIAAF2KIgAAXYoiAABdiiLAcl9C3jxNblMVLDfIDbvlllAUAZar+jxduU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlfgl58zS5TVWw3CA37JZbQlEEAKBLUQQAoEtRBACgS1EEAKBLUQQAoEtRBACgS1EEWK7q0y/kNlXBcoPcsFtuCUURYLmqz9OV21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFjuS8ibp8ltqoLlBrlht9wSiiIAAF2KIgAAXYoiAABdiiIAAF2KIgAAXYoiAABdiiLAcl9D3jxNblMVLDfIDbvlllAUAZar+jxduU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFgOWqPiZNblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5ryFvnia3qQqWG+SG3XJLKIoAAHQpigAAdCmKAAB0KYoAAHQpigAAdCmKAAB0KYoAy30JefM0uU1VsNwgN+yWW0JRBFiu6vN05TZVwXKD3LBbbglFEVjrT/zpT20dyJunFef+62pl62FVsNwgN+yWW0JRBNbKHeQhtXUgb55WnJt73rSy9bAqWG6QG3bLLaEoAmvlDvKQ2jqQN08rzs09b1rZelgVLDfIDbvlllAUgbVyB3lIbR3Im6cV5+aeN61sPawKlhvkht1ySyiKwFq5gzyktg7kzdOKc3PPm1a2HlYFyw1yw265JRRFYK3cQR7SP0PePK0w929/+9vfcs+b9re//e2XX375JV8j806pFcFyg9ywW24JRRFYK3cQ9pA73ir5+gC2oigCa+UCwh5ywVslXx/AVhRFYK1cQNhDLnir5OsD2IqiCKyVCwh7yAVvlXx9AFtRFIG1cgFhD7ngrZKvD2AriiKwVi4g7CEXvFXy9QFsRVEE1soF5CEVfoxNVa6PxzmRG+SG3XJLKIrAWrmDPKT2ebp587Ti3NzzppV9rnBVsNwgN+yWW0JRBNbKHeQhtXUgb55WnJt73rSy9bAqWG6QG3bLLaEoAmvlDvKQ2jqQN08rzs09b1rZelgVLDfIDbvlllAUgbVyB3lIbR3Im6cV5+aeN61sPawKlhvkht1ySyiKwFq5gzyktg7kzdOKc3PPm1a2HlYFyw1yw265JRRFYK3cQR5SWwfy5mnFubnnTStbD6uC5Qa5YbfcEooisFbuIA/p15A3TyvM/fvf//733POm/f3vf//y5cuXfI3MO6VWBMsNcsNuuSUURWCt3EHYQ+54q+TrA9iKogislQsIe8gFb5V8fQBbURSBtXIBYQ+54K2Srw9gK4oisFYuIOwhF7xV8vUBbEVRBNbKBYQ95IK3Sr4+gK0oisBauYCwh1zwVsnXB7AVRRFYKxeQh/RbyJunFeb+4x//+EcuedP+8Y9/fP369Wu+RuadUiuC5Qa5YbfcEooisFbuIA+pfZ5u3jytODf3vGllnytcFSw3yA275ZZQFIG1cgd5SG0dyJunFefmnjetbD2sCpYb5IbdcksoisBauYM8pLYO5M3TinNzz5tWth5WBcsNcsNuuSUURWCt3EEeUlsH8uZpxbm5500rWw+rguUGuWG33BKKIrBW7iAPqa0DefO04tzc86aVrYdVwXKD3LBbbglFEVgrd5CH1NaBvHlacW7uedPK1sOqYLlBbtgtt4SiCKyVOwh7yB1vlXx9AFtRFIG1cgFhD7ngrZKvD2AriiKwVi4g7CEXvFXy9QFsRVEE1soFhD3kgrdKvj6ArSiKwFq5gLCHXPBWydcHsBVFEVgrFxD2kAveKvn6ALaiKAJr5QLCHnLBWyVfH8BWFEVgrVxAHlL7mLS8eVpxbi5508o+Lq4qWG6QG3bLLaEoAmvlDvKQ2jqQN08rzs09b1rZelgVLDfIDbvlllAUgbVyB3lIbR3Im6cV5+aeN61sPawKlhvkht1ySyiKwFq5gzyktg7kzdOKc3PPm1a2HlYFyw1yw265JRRFYK3cQR5SWwfy5mnFubnnTStbD6uC5Qa5YbfcEooisFbuIA+prQN587Ti3NzzppWth1XBcoPcsFtuCUURWCt3kIf0W8ibpxXm/uMf//hH7nnT/vGPf3z9+vVrvkbmnVIrguUGuWG33BKKIgAAXYoiAABdiiIAAF2KIgAAXYoiAABdiiIAAF2KIsByX0LePE1uUxUsN8gNu+WWUBQBlqv6PF25TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOV+CXnzNLlNVbDcIDfslltCUQQAoEtRBACgS1EEAKBLUQQAoEtRBACgS1EEAKBLUQRYrurTL+Q2VcFyg9ywW24JRRFguarP05XbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWO5LyJunyW2qguUGuWG33BKKIgAAXYoiAABdiiIAAF2KIgAAXYoiAABdiiIAAF2KIsByX0PePE1uUxUsN8gNu+WWUBQBlqv6PF25TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFAAC6FEWA5ao+Jk1uUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmvIW+eJrepCpYb5IbdcksoigAAdCmKAAB0KYoAAHQpigAAdCmKAAB0KYoAFf7Env6VLf0PzvIT0TxFEWC5L1++/Prrr7/mDjLtFCq3MPjXX3/9+9///vdcQqadQuWW5v7lL3/5Sy5N006hO+UqigB7aJ+nm2vINLlNVXDLzT1kmtxQnJtL07TdchVFgD20dSDXkGlym6rglpt7yDS5oTg3l6Zpu+UqigB7aOtAriHT5DZVwS0395BpckNxbi5N03bLVRQB9tDWgVxDpsltqoJbbu4h0+SG4txcmqbtlqsoAuyhrQO5hkyT21QFt9zcQ6bJDcW5uTRN2y1XUQTYQ1sHcg2ZJrepCm65uYdMkxuKc3NpmrZbrqIIsIdffvnln//85z9zDZl2CpVbGPzPf/7zb3/7299yD5l2CpVbmvvnP//5z7k0TTuF7pSrKAJsI1cQNpE7CHvIhelR5SeieYoiQIXcP9hELiDsIRemR5WfiOYpigAVcv9gE7mAsIdcmB5VfiKapygCVMj9g03kAsIecmF6VPmJaJ6iCFAh9w82kQsIe8iF6VHlJ6J5iiJAhdw/2EQuIOwhF6ZHlZ+I5imKAMv5eJxQlVsW7ONxwoa5JR83U/UxNlW5iiLAHtrn6eYaMk1uUxXccnMPmSY3FOfm0jRtt1xFEWAPbR3INWSa3KYquOXmHjJNbijOzaVp2m65iiLAHto6kGvINLlNVXDLzT1kmtxQnJtL07TdchVFgD20dSDXkGlym6rglpt7yDS5oTg3l6Zpu+UqigB7aOtAriHT5DZVwS0395BpckNxbi5N03bLVRQB9tDWgVxDpsltqoJbbu4h0+SG4txcmqbtlqsoAuzhy5cvv/7666+5hkw7hcotDP7111///ve//z33kGmnULmluX/5y1/+kkvTtFPoTrmKIsA2cgVhE7mDsIdcmB5VfiKapygCVMj9g03kAsIecmF6VPmJaJ6iCFAh9w82kQsIe8iF6VHlJ6J5iiJAhdw/2EQuIOwhF6ZHlZ+I5imKABVy/2ATuYCwh1yYHlV+IpqnKAJUyP2DTeQCwh5yYXpU+YlonqIIsNzXr19/++2333IHmXYKlVsY/Ntvv/3jH//4Ry4h006hcktz//rXv/41l6Zpp9CdchVFgD20z9PNNWSa3KYquOXmHjJNbijOzaVp2m65iiLAHto6kGvINLlNVXDLzT1kmtxQnJtL07TdchVFgD20dSDXkGlym6rglpt7yDS5oTg3l6Zpu+UqigB7aOtAriHT5DZVwS0395BpckNxbi5N03bLVRQB9tDWgVxDpsltqoJbbu4h0+SG4txcmqbtlqsoAuyhrQO5hkyT21QFt9zcQ6bJDcW5uTRN2y1XUQTYRq4gbCJ3EPaQC9Ojyk9E8xRFgAq5f7CJXEDYQy5Mjyo/Ec1TFAEq5P7BJnIBYQ+5MD2q/EQ0T1EEqJD7B5vIBYQ95ML0qPIT0TxFEaBC7h9sIhcQ9pAL06PKT0TzFEWACrl/sIlcQNhDLkyPKj8RzVMUASrk/sEmcgFhD7kwPar8RDRPUQRYrn1MWu4g0+Q2VcEtN5eQaXJDcW4uTdN2y1UUAfbQ1oFcQ6bJbaqCW27uIdPkhuLcXJqm7ZarKALsoa0DuYZMk9tUBbfc3EOmyQ3Fubk0TdstV1EE2ENbB3INmSa3qQpuubmHTJMbinNzaZq2W66iCLCHtg7kzdPkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlvsa8uZpcpuqYLlBbtgtt4SiCABAl6IIAECXoggAQJeiCABAl6IIAECXoggAQJeiCLDcl5A3T5PbVAXLDXLDbrklFEWA5ao+T1duUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLlfQt48TW5TFSw3yA275ZZQFAEA6FIUAQDoUhQBAOhSFAEA6FIUAQDoUhQBAOhSFAGWq/r0C7lNVbDcIDfslltCUQRYrurzdOU2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlvsS8uZpcpuqYLlBbtgtt4SiCABAl6IIAECXoggAQJeiCABAl6IIAECXoggAQJeiCLDc15A3T5PbVAXLDXLDbrklFEWA5ao+T1duUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURAIAuRREAgC5FEQCALkURAIAuRREAgC5FEQCALkURAIAuRRFguaqPSZPbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRYrmodkNtUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWO5ryJunyW2qguUGuWG33BKKIgAAXYoiAABdiiIAdf7Env6Vs3xBPx5FEYA6uX+wiVyYHlW+oB+PoghAndw/2EQuTI8qX9CPR1EEoE7uH2wiF6ZHlS/ox6MoAiz3JeTN0zbM/fXXX3/NHWTeKbUiWG749ddf//73v/89l6Zpp9DNcqtujJLcEooiwHJVn6e7aW6uIfOqguWGlpt707RNc/N1Pa0qt4SiCLBc1TqwaW6uIfOqguWGlpt707RNc/N1Pa0qt4SiCLBc1TqwaW6uIfOqguWGlpt707RNc/N1Pa0qt4SiCLBc1TqwaW6uIfOqguWGlpt707RNc/N1Pa0qt4SiCLBc1TqwaW6uIfOqguWGlpt707RNc/N1Pa0qt4SiCLBc1TqwaW6uIfOqguWGlpt707RNc/N1Pa0qt4SiCLDcLyFvnrZh7j//+c9/5hoy75RaESw3/POf//zb3/72t9ybpp1CN8utujFKcksoigDUyRWETeTO9KjyBf14FEUA6uT+wSZyYXpU+YJ+PIoiAHVy/2ATuTA9qnxBPx5FEYA6uX+wiVyYHlW+oB+PoghAndw/2EQuTI8qX9CPR1EEoE7uH2wiF6ZHlS/ox6MoAixX9ekXG+aWfHpL5cfCyPXxOM98PI6iCFCh6vN0N83NNWReVbDc0HJzb5q2aW6+rqdV5ZZQFAGWq1oHNs3NNWReVbDc0HJzb5q2aW6+rqdV5ZZQFAGWq1oHNs3NNWReVbDc0HJzb5q2aW6+rqdV5ZZQFAGWq1oHNs3NNWReVbDc0HJzb5q2aW6+rqdV5ZZQFAGWq1oHNs3NNWReVbDc0HJzb5q2aW6+rqdV5ZZQFAGWq1oHNs3NNWReVbDc0HJzb5q2aW6+rqdV5ZZQFAGW+xLy5mkb5v7666+/5hoy75RaESw3/Prrr3//+9//nnvTtFPoZrlVN0ZJbglFEYA6uYKwidyZHlW+oB+PoghAndw/2EQuTI8qX9CPR1EEoE7uH2wiF6ZHlS/ox6MoAlAn9w82kQvTo8oX9ONRFAGok/sHm8iF6VHlC/rxKIoA1Mn9g03kwvSo8gX9eBRFgOW+hrx52oa5v/3222+5g8w7pVYEyw2//fbbP/7xj3/k0jTtFLpZbtWNUZJbQlFcJd9mx/I08FOp+jzdTXPzM+C8qmC5oeXm3jRt09x8XU+ryi2hKK6Sb7NjeRr4qVStA5vm5mfAeVXBckPLzb1p2qa5+bqeVpVbQlFcJd9mx/I08FOpWgc2zc3PgPOqguWGlpt707RNc/N1Pa0qt4SiuEq+zY7laeCnUrUObJqbnwHnVQXLDS0396Zpm+bm63paVW4JRXGVfJsdy9PAT6VqHdg0Nz8DzqsKlhtabu5N0zbNzdf1tKrcEoriKvk2O5angZ9K1TqwaW5+BpxXFSw3tNzcm6Ztmpuv62lVuSUUxVXybXYsTx/49v3777///vuPb/mBkW+n3d+8N0Cl/OzHJnJnelT5gn48iuIq+R47lqfHzi3x7Psby9954o37AtTKz35sIhemR5Uv6MejKK6S77FjeXrk/Orgsze1vxh5064A1fKzH5vIhelR5Qv68SiKq+R77FieHjm/Ovj9x48f8cLiW+rfOzolQLX87McmcmF6VPmCfjyK4ir5HjuWpwfitxPP/3l+ofB73uFWe6taUQTuQn72YxO5MD2qfEE/HkVxlXyPHcvTAy898a1/o/L0XvWrOwJ8hvzsxyZyYXpU+YJ+PIriKvkeO5an+35cvYh4eq3wqTUOnSZOOyqKwF3Iz35sIhemR5Uv6MejKK6S77FjebrvuhqeXyy8evzWuSMqivBHq/qYNLlNVbDcIDfslltCUVwlV8FjebovNcPX31I+dckf0RbTIzezp1crn0vo02c13rxg+SMe+H71KY6n0dPXp7+wSTu+/dMe4adWtQ7IbaqC5Qa5YbfcEoriKrkKHsvTXdfvPKdu1xXNslcUb2ZPO7X/PL8E2fvdxqsP53l5JIpiPPiy5XY/eFxV64DcpipYbpAbdsstoSiukqvgsTzdlctdLo432kt9vaKYX508/zJj/Nf1ZzVefIOL/njyHHn+Nm2qs+PhjwiPoWodkNtUBcsNcsNuuSUUxVVyFTyWp7vyX6+89kuK8cbzoCg+vV988eXl5+6c/vvb+YXBl/ejnx+4evWwzcaDL4/Gf50333xveDhV64DcpipYbpAbdsstoSiukqvgsTzdlQvfa0Xx6eE8d5aGX955Pv3X04uAVx/Bc/nA1e84tjeanxvl5fd77WeEx1C1DshtqoLlBrlht9wSiuIquQoey9Nd+dW5V0rY82uG3aKY0p5L4Cn05c3ipxclr3bJD8Sric8PXb+r3f/m8GC+hrx5mtymKlhukBt2yy2hKK6Sq+CxPN2Vi+LN7xleealy/a529RuPL1+knV++TL8hefG9z0Xx5ZHrHyu9xQ0A7EtRXCVXwWN5uut9RfHlwX5RvHo98uWd585fVr+lKF7+7uTVz/ntxw+fkQMAPwdFcZVcBY/l6a53FcWLV/L6RfEqbvDO8/VbzFcOiuL5FUbtEAB+OoriKrkKHsvTXe8pipeFb1AULzrgqdq9/Ndl6cvFsW2NT8NpX/VmdEUA+PkoiqvkKngsT3flonj0xywv7yUPi+L1m9OtDcYfply4Loo/2r+4Ep425lcdn5qirggAPxVFcZVcBY/l6a5T8+oXxZfu1lrd1Z+QjIriy07Xry1mz0XxoiOeXeSkt6cvYrpvXAMAG1IUV8lV8Fie7jr1tPy7gFHiLsrbecP1G8ajovj83vPLO89HRbE99P376c9Tjt56PovP2j7rfW94LF9C3jxNblMVLDfIDbvlllAUV8lV8Fie7sqFbFwUr6vhqCg+v/f88s7zzfd4EW9KPz/2NHsw89wV8wPwcKo+T1duUxUsN8gNu+WWUBRXyVXwWJ7ueimG4eUVxh8XnnZ82RINr/MpNadHThsvit7wr5zPzfDiu7+hKD53xcGD8Diq1gG5TVWw3CA37JZbQlFcJVfBY3m6K//xyrCD9d4/7u3bWuFp97TpVm6pp8CLh7ozJ3kOHlLVOiC3qQqWG+SG3XJLKIqr5Cp4LE/3ncrZy8uC5zp49fiTtxbFVhEv3nm+/cid79+/n79lboMX+6WHnl6nbHIgPKKqdUBuUxUsN8gNu+WWUBRXyVXwWJ7uu66G6ZNrLry5KMbrh1cPpZr3/GcxqQ0e/DGLogg3qtYBuU1VsNwgN+yWW0JRXCVXwWN5uu/czp462NUXh4Z/zNLevb5qcun97effg7xug/FJie2LToe8+HJYZ+GBVK0DcpuqYLlBbtgtt4SiuEqugsfy9MD5pcLofOeq9rYGdlAUT4Hfr19rvHqh8qU2XvXS9pLlxVf5Xenn75c/0wce0i8hb54mt6kKlhvkht1ySyiKq+QqeCxPj8RHXv/48SP+Iz/cd1AU45XB65z4FqeB+C6t5p3/O35d8fRLjQdF8Rwaf2MdCRePAQD7UhRXyVXwWJ4eacWuGbS/7KAoRiu8fmHy+ns8P3i1+fs5tD2Si2Krs89G3xsA2IuiuEqugsfy9NhLCYu/Rn6Do6J4fhM5vzV8+ccw+fcSn77zUVG8KpVv/jEBgDunKK6Sq+CxPH0gPsP6+8u/kfKqo6LY/6Pkb/GWcf4m561t42FRfP5XWb6fPwAcAPgpKIqr5Cp4LE9/npt3ngEA+hTFVXIVPJanP83phUEv+gEAb6EorpKr4LE8/Wm67zwDi1V9+oXcpipYbpAbdsstoSiukqvgsTz9WbygCJ+i6vN05TZVwXKD3LBbbglFcZVcBY/l6c/wrf3JSt4OLFe1DshtqoLlBrlht9wSiuIquQoey9Of4OkzcLygCPWq1gG5TVWw3CA37JZbQlFcJVfBY3n6E7Si6E+e4RNUrQNym6pguUFu2C23hKK4Sq6Cx/L0Jzj/M88+DRs+RdU6ILepCpYb5IbdcksoiqvkKngsTwM/lap1QG5TFSw3yA275ZZQFAGW+xLy5mlym6pguUFu2C23hKIIAECXoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIsNzXkDdPk9tUBcsNcsNuuSUURYDlqj5PV25TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRREAgC5FEQCALkURAIAuRREAgC5FEQCALkURAIAuRREAgC5FEWC5qo9Jk9tUBcsNcsNuuSUURYDlqtYBuU1VsNwgN+yWW0JRBFiuah2Q21QFyw1yw265JRRFgOWq1gG5TVWw3CA37JZbQlEEWK5qHZDbVAXLDXLDbrklFEWA5arWAblNVbDcIDfslltCUQRY7mvIm6ftmvun1X4LefM0uaHl/utq/wh587R//OMfpRfwalW5JRRFAIrlHsIech+7Z/maYxVFEYBiuYCwh1zG7lm+5lhFUQSgWC4g7CGXsXuWrzlWURQBKJYLCHvIZeye5WuOVRRFAIrlAsIechm7Z/maYxVFEYBiuYCwh1zG7lm+5lhFUQRY7kvIm6ftmpsLyLRfQ948TW5oubmMTft7yJun/f3vfy+9gFeryi2hKAIsV/V5urvm5h4yrQXnzdPkhpab+9i04tx8/U3bLbeEogiwXNU6sGtu7iHTWnDePE1uaLm5j00rzs3X37TdcksoigDLVa0Du+bmHjKtBefN0+SGlpv72LTi3Hz9Tdstt4SiuEq+bI/laeCnUrUO7Jqbe8i0Fpw3T5MbWm5euqYV5+brb9puuSUUxVXyZXssTwM/lap1YNfc3EOmteC8eZrc0HLz0jWtODdff9N2yy2hKK6SL9tjeRr4qVStA7vm5h4yrQXnzdPkhpabl65pxbn5+pu2W24JRXGVfNkey9PAT+WXkDdP2zU395Bp/wx58zS5oeXmpWva30LePO1vf/tb6QW8WlVuCUVxlXzZHsvTAD+x3EPYQ1667lm+5lhFUVwlX7PH8jTATywXEPaQl657lq85VlEUV8nX7LE8PfDj9yTvcOXbj++///779+8/8gMAf6hcQNhDXrruWb7mWEVRXCVfs8fy9MB7iuK3U0tsVEXgnuQCwh7y0nXP8jXHKoriKvmaPZanBy66X8g7vPh2td/3/DDAHycXEPaQl657lq85VlEUV8nX7LE8PfD999+//7iUd3gWPfHHj28/4lVITRG4H7mAsIe8dN2zfM2xiqK4Sr5mj+Xpge9vfhf5XA6/xX+fX4ds/w38Eao+/WLX3FxAphV/LEzePG3T3Lx0TfPxOKEqt4SiuEq+bI/l6YE3/7rh+WXE56/Of9Ny9Tjwqao+T3fX3NxDprXgvHma3NBy89I1rTg3X3/TdsstoSiuki/bY3l64M1FMb2GeGqKbxsEKlStA7vm5h4yrQXnzdPkhpabl65pxbn5+pu2W24JRXGVfNkey9MDb+17599QvPj69AKjlxThj1O1Duyam3vItBacN0+TG1puXrqmFefm62/abrklFMVV8mV7LE8PvPV3DU/F8KpRpuJ485JjGvn2/fx7jbd/LPMjHvj+43L2NHr6+vSxjWnHq/3gcVWtA7vm5h4yrQXnzdPkhpabl65pxbn5+pu2W24JRXGVfNkey9N9pxcK39S8boriqbWNe+HJaY/2n5efwHg1dPWROy+PRFGMB1+23O4Hj6tqHdg1N/eQaS04b54mN7TcvHRNK87N19+03XJLKIqr5Mv2WJ7uO3WxvK3rpgbebLh5jfHlzenhJzCmT3F8boDnotimOjt6zxvK1oFdc3MPmdaC8+ZpckPLzUvXtOLcfP1N2y23hKK4Sr5sj+XpvlMji3d487u/yU0vvP0lxaf3iy++jIlz4zv/s3/fzi8Mvrwf/fzA1auHbTYefHk0/uu8+eAHhQfxJeTN03bNzT1k2q8hb54mN7TcvHRN+3vIm6f9/e9/L72AV6vKLaEorpIv22N5uu9c7l5ernv6nMRbN73w1N2ui2L6e5eXd54vP0vnvNPTd7n6kJ3LB9obzc+N8vJ97vxnNQA+cHtXeem6Z/maYxVFcZV8zR7L032Xv/p3NmyKuZ51Pknxev758etKefrqqQAOH4hXE58fuv7mN78dCZALCHvIS9c9y9ccqyiKq+Rr9lie7oui+P3Hj2/xnu64gqViGG9WX+6Q3p5++SIVu5cvr/a/aoPnn+XlkeuieH4V9OJBAEVxU3npumf5mmMVRXGVfM0ey9N957539abu6A9Frl7ka39nkva9elP45Z3ntONLzzsuipe/EXnVYL/9+HH025TAI8oFhD3kpeue5WuOVRTFVfI1eyxP912/2nf1C4RZ+4OXH99+PL9fnUvl5fjgnefrt5ivHBTF83fUDoGhXEDYQ1667lm+5lhFUVwlX7PH8vSb5IJ25eVvXk7VL/e/k4sOeEp6+a/LzN7gv/zLt/g0nPZVb0ZXBMZyAWEPeem6Z/maYxVFcZV8zR7L029y/BfFF00xPg37pu+9jH9/fjTes75wPfij/Ysr4WljLqxPTVFXhOZryJun7ZqbC8i030LePE1uaLl56Zr2j5A3T/vHP/5RegGvVpVbQlFcJV+2x/L02zyXtZfudtXqzp3u3NW6RfHl9w+vX1vMngevXqU8KIpXMcPXPOGBVH2e7q65uYdMa8F58zS5oeXmpWtacW6+/qbtlltCUVwlX7bH8vTbnHrYueldlLebOnjW6XIX7z2/vPN8VBTbQ9+/n/485eit57Onv8s++D1KeBxV68CuubmHTGvBefM0uaHl5qVrWnFuvv6m7ZZbQlFcJV+2x/L02zy3sOdO9q6i+PyK5Ms7z4MdT+JN6efHnmYPZp67Yn4AHk7VOrBrbu4h01pw3jxNbmi5eemaVpybr79pu+WWUBRXyZftsTz9Ns8l7MeFvNPZac/bF/ae3nu+KHrDv3I+R1y00DcUxeeuOHgQHkfVOrBrbu4h01pw3jxNbmi5eemaVpybr79pu+WWUBRXyZftsTzddfPi3M2GkcGfvbRWePHO87gonna6fLXybUXxdg4eUtU6sGtu7iHTWnDePE1uaLl56ZpWnJuvv2m75ZZQFFfJl+2xPN2VXxYcd7D8yKjKRUW8eOf5tnx+/x7/pHSOGBfFp9cpmxwIj6hqHdg1N/eQaS04b54mN7TcvHRNK87N19+03XJLKIqr5Mv2WJ7uyl3t9EfIvfp3087OLyjevvP89PrhVUyqec9/Lp2++cEfsyiKwCtyD2EPeem6Z/maYxVFcZV8zR7L012p750K2aiCXXfI9GGIF86/QXhbKl++fA66boPxSYnti06HvPhy+L2Bh5ULCHvIS9c9y9ccqyiKq+Rr9lie7rv6t57PPXFUwc4Ptrb27Wrs2mm/77evUz7HvtTGq5Z6jh8Vxeu3yA9e9gQeVS4g7CEvXfcsX3Osoiiukq/ZY3m6L17H+/38LzjHP+ac93iW/63nfk98SrzaFt/jNNA+sTs2v9TN0+bzV20gF8VzaPybLJFw8RiAorirvHTds3zNsYqiuEq+Zo/l6YHW656Me2L+V1QGPbG1wuucwTe52vz9nN8eyUUx/wsuw28OAGxFUVwlV8FjeXqovel7dvyO7sWe8XfLXZfvUV9vvPkmL03xlHdUFK9K5cE3BwC2oiiukqvgsTx9IN5L/v7yb6QMtben403gkdMuedu/fGuj6Zuct7aNh0Xx+V9l+T74AHAAYEOK4iq5Ch7L05/n5p1nYL2qj0mT21QFyw1yw265JRTFVXIVPJanP40/SobPULUOyG2qguUGuWG33BKK4iq5Ch7L05+m+84zsFjVOiC3qQqWG+SG3XJLKIqr5Cp4LE9/Fi8owqeoWgfkNlXBcoPcsFtuCUVxlVwFj+Xpz/Ct/clK3g4sV7UOyG2qguUGuWG33BKK4iq5Ch7L05/g6TNwvKAI9arWAblNVbDcIDfslltCUVwlV8FjefoTtKLoT57hE3wNefM0uU1VsNwgN+yWW0JRXCVXwWN5+hOc/5lnn4YNALyZoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIsNyXkDdPk9tUBcsNcsNuuSUURYDlqj5PV25TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguV9C3jxNblMVLDfIDbvlllAUAQDoUhQBAOhSFAEA6FIUAQDoUhQBAOhSFAEA6FIUAZar+vQLuU1VsNwgN+yWW0JRBFiu6vN05TZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGW+xLy5mlym6pguUFu2C23hKIIAECXoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIsNzXkDdPk9tUBcsNcsNuuSUURYDlqj5PV25TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBRX+R/vkqeBn0rVOiC3qQqWG+SG3XJLKIqr5Cp4LE8DANwdRXGVXAWP5WkAgLujKK6Sq+CxPA0AcHcUxVVyFTyWpwEA7o6iuEqugsfyNADA3VEUV8lV8FiefsW333///Xve+C/fvn///ffff//xLT/Qd9p5tOvpsdtvAAA8NEVxlVwFj+XpY6eeeNvjzi3x7Puo/1067z7Ysf8NAIDHpiiukqvgsTx96Fzjco+LjU8GBfBC1MrBfucHFUVYpupj0uQ2VcFyg9ywW24JRXGVXAWP5ekjP6ILph4X3e7Hjx+HDfDJt/byY3+3+A6KIixTtQ7IbaqC5Qa5YbfcEoriKrkKHsvTY60I5h4Xv514/s/X3zf+1rrmoCi2FycPI4D3qFoH5DZVwXJDce6fVpP7LB/yeYriKrkKHsvTA08vBN7+rclLT2xFr1sBz55ekRzu9fRN8nbgo9o6kDdPk9tUBcsNxbm53EyT+ywf8nmK4iq5Ch7L0wOt451fEbzqcdcbTk3vqTXeeqqBo6J4yrr5BsCMtg7kzdPkNlXBckNxbi430+Q+y4d8nqK4Sq6Cx/L0wLkofs+98KYanl9SvHz4SnTN+L+donj+6J3+5+8AH9TWgbx5mtymKlhuKM7N5Waa3Gf5kM9TFFfJVfBYnh748fv3cx28KYqpGQ46YHj6pMXBTqfO2f2gxptvev1d45cnv998iuO39kD85E9a1um10ed3zJ8SLveDn8PXkDdPk9tUBcsNhbm//fbbb7ncTDuFyj3Lh3yeorhKroLH8vTAUwnLna339bBvPYX0i2KM9opibqPnnZ6+y/Ofx+S5p7+9SY/EV5d/gnOx4813BuDnlIsNa+XjPU9RXCVXwWN5+hWvFcP8eNepkt0WxZjsFsXed2kBl3XwMvX60x0vIs9fxNQ5Mu14+3MB8BPKxYa18vGepyiukqvgsTz9ilwE81+vHP+SYtMtZOc3ngdF8en94osv2zeJVwZPYfH28fMuLw9cvnrYomLLy6PxD8qcE26/NwA/oVxsWCsf73mK4iq5Ch7L06/oFcXLzvfhovj0omG/KF730Zd3nq8+j+ey5109cPVDxwuHz//W4NX3y7UXgJ9VLjaslY/3PEVxlVwFj+XpV+SimDvfh4viU26/KF5/25d3nq97antR8nqX9EAUxZeHrt7V7n9zAH4+udiwVj7e8xTFVXIVPJanX/FaUbz5u5Oem6GLKjfoalexz1+knS++vP4xLtvg6ZGLVw2vf/2x/80B+OnkYsNa+XjPUxRXyVXwWJ5+RVFRfKlrg6J4+abwyzvP168bXva846L48kh+rfLHD28983P5EvLmaXKbqmC5oTD3119//TWXm2mnULln+ZDPUxRXyVXwWJ5+RVFRfEkdFMXL7zt65/n6LeZLB0Xx/LVPUOTn1T5PN2+eJrepCpYbinNzuZkm91k+5PMUxVVyFTyWp19RUxQvCt+gKF52wJfWl79ZLo5n376d/+HBUVE8zeiK/LzaOpA3T5PbVAXLDcW5udxMk/ssH/J5iuIquQoey9OveK0ofuiPWV7eSx4Xxes3p9v0ueFduA7+9iM+MieMiuJTU9QV+Tm1dSBvnia3qQqWG4pzc7mZJvdZPuTzFMVVchU8lqdf8eaieNrxSX6RL2+7zBwVxZedTskv2248BZ9/kgvDonj5T7M8f2oO/CzaOpA3T5PbVAXLDcW5udxMk/ssH/J5iuIquQoey9OvyEUxf/Lg8+PvKIpXbxgPi+Lze8+p9GWR9FT+vv/48ePb+YtxUTz9tC8vK+aHYG9tHcibp8ltqoLlhuLcXG6myX2WD/k8RXGVXAWP5elX5KJ4+dt/V4+/vSheV8NhUXz6ThfvPPdL39n5+8Y/vfLKH7M8eeqK3n/m59LWgbx5mtymKlhuKM7N5Waa3Gf5kM9TFFfJVfBYnn5Fryh2X2H8dvqkmea4KJ7b2bNzXet+Sk37ThfvPA//yjlq6su3eEtRfO6KeSts7ZeQN0+T21QFyw2Fuf/85z//mcvNtFOo3LN8yOcpiqvkKngsT78iF8P8xytvek3utih2XE2ctFZ4+Q2GRfEUcFFP31gUb+YA+FnlYsNa+XjPUxRXyVXwWJ5+RS6KqVqdX8m7fLjreuaqHr64mnja8cfVO883b3x/+/49frgUcFAUr///yYEA/KRysWGtfLznKYqr5Cp4LE+/4qYoXlfD00t83d8wvHIa+UBRPL9+ePnOc655L38WkwIO/phFUQR4SLnYsFY+3vMUxVVyFTyWp19xUxTP7z0/tb6rL8aO9hr+MUtrcddN7rIBXr4Pft0G4/ce2xedDvny1Sl+9JMB8BPJxYa18vGepyiukqvgsTz9ipuiGC8pRrk6F7VBy7v0waJ4fvXvuuZdN9OX2nj5ymb7pJxBUbz6fyj/xiUAP6tcbFgrH+95iuIquQoey9OvuC2K8Xrd6Q+V4z+uH+z6aFG8bnxn55p6/idVzv9O39O3f6ms580Hbz1Hpzw/GAneeQZ4BLnYsFY+3vMUxVVyFTyWp1/RKYrnUvZsVAAvHe13VBSjCl5PRnm8+fZXm7+dQkdF8frHH35v2FThp4vIPakKlhsKc0s+Fqbq42Z2y1UU71qugsfy9Cs6RfGylb3tn8A77Tna8agoxt+9pG0X/wDf5bd/2fojQkdF8bpUej2Rn037PN28eZrcpipYbijOzeVmmtxn+ZDPUxRXyVXwWJ5+Rbcotjdtv8c7uK877fyhopj+lOVp6/dz1ft+/cHe385bY+NxUXz+V1luPxocttfWgbx5mtymKlhuKM7N5Waa3Gf5kM9TFFfJVfBYnr5r/igZ3qutA3nzNLlNVbDcUJyby800uc/yIZ+nKK6Sq+CxPH3P/FEyvFtbB/LmaXKbqmC5oTg3l5tpcp/lQz5PUVwlV8Fjefqe9d95Bg60dSBvnia3qQqWG4pzc7mZJvdZPuTzFMVVchU8lqfvmBcU4f3aOpA3T5PbVAXLDcW5udxMk/ssH/J5iuIquQoey9N36ts3n3IIH/El5M3T5DZVwXJDYe6vv/76ay43006hcs/yIZ+nKK6Sq+CxPH2nnj6+Jm8HgI/IxYa18vGepyiukqvgsTx9p1pP9CfPACyRiw1r5eM9T1FcJVfBY3n6TsUHJeatAPAxudiwVj7e8xRFAOCT5GLDWvl4z1MUAYBPkosNa+XjPU9RBAA+SS42rJWP9zxFEWC5ryFvnia3qQqWGwpzf/vtt99yuZl2CpV7lg/5PEURYLn2ebp58zS5TVWw3FCcm8vNNLnP8iGfpygCLNfWgbx5mtymKlhuKM7N5Waa3Gf5kM9TFAGWa+tA3jxNblMVLDcU5+ZyM03us3zI5ymKAMu1dSBvnia3qQqWG4pzc7mZJvdZPuTzFEWA5do6kDdPk9tUBcsNxbm53EyT+ywf8nmKIsBybR3Im6fJbaqC5Ybi3Fxupsl9lg/5PEURAPgkudiwVj7e8xRFAAC6FEUAALoURQAAuhRFAAC6FEUAALoURQAAuhRFgOXax6TlzdPkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5qnVAblMVLDfIDbvlllAUAZb7GvLmaXKbqmC5QW7YLbeEoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIAECXogiw3JeQN0+T21QFyw1yw265JRRFgOWqPk9XblMVLDfIDbvlllAUAZarWgfkNlXBcoPcsFtuCUURYLmqdUBuUxUsN8gNu+WWUBQBlqtaB+Q2VcFyg9ywW24JRRFguap1QG5TFSw3yA275ZZQFAGWq1oH5DZVwXKD3LBbbglFEWC5X0LePE1uUxUsN8gNu+WWUBRX+d/fJU8DANwdRXGVXAWP5WkAgLujKK6Sq+CxPA0AcHcUxVVyFTyWpwEA7o6iuEqugsfyNADA3VEUV8lV8FieBgC4O4riKrkKHsvTr/j2+++/f7/a8uP35OrRru+///77t7zxx/fT5u8/bh4AJlR9+oXcpipYbpAbdsstoSiukqvgsTx97NQTp4viqRDmoniR8l1VhHWqPk9XblMVLDfIDbvlllAUV8lV8FiePnTuiakonmvfpatHO2Lgug1eh2iKsEzVOiC3qQqWG+SG3XJLKIqr5Cp4LE8faS/73RTF7z8uXT1641vrhFdl8Lzt+48f3370WiTwcVXrgNymKlhukBt2yy2hKK6Sq+CxPD3WSlynKL7SDS98e36L+bILnje2kM6b28DHVa0DcpuqYLlBbtgtt4SiuEqugsfy9MDTC4HnPzi5euSl473q6RXJXBQvemJril5ShEWq1gG5TVWw3CA37JZbQlFcJVfBY3l6oHW88yuCHy6KrSee/+9FFUyZ56b48iUwo2odkNtUBcsNcsNuuSUUxVVyFTyWpwfORfH7Tan7QFH8Fv/3oiieXmG8jPCSIqzzJeTN0+Q2VcFyg9ywW24JRXGVXAWP5emBH79/P3e5blF8a6v7/ff4lMTUBPMriKfvcdU9u9/0ZSR+efL2Exjbn8Z8j5/8Scs6vTb6tP1px7cWXgDgkymKq+QqeCxPDzyVsJvOdnqjODe0kaf9XimKtx/q3dvjqdVdfgLj5T5XH7lz8Uh8dX4wIp5+/fI2AQC4E4riKrkKHsvTr+gWxcuv3+JUyQ6K4u2G/Brj6esWMPoExvjIx2cvP/P5i5g6R6Yd31p6AYBPpCiukqvgsTz9ipuieNowfve3LxWy05eXD+fHX94vvviyTcQrg6ed40d43uXlgctXD1tUbHl5NP4xmHOC1xQB4A4piqvkKngsT7+iWxQv3rx907+/1ymKV2OnuOuc05aXlxRf3nm++iydy5539cDVD51+zqv3ua+/DQBwLxTFVXIVPJanX9Etilfe0BTTbvmN5c4nKV5/25d3nq8r5emrm13SA1EUXx66+ua3vx0JANwDRXGVXAWP5elXDIri6Z/fe/pXV15vimmvVAzjlwZTymnT7Rep2F18ebX/VRs8PXJRS69bav7/Drb3NeTN0+Q2VcFyg9ywW24JRXGVXAWP5elX3BTF87vOl+/jvqFp5SJ41Qzb29ipKF6+KfzyzvP164aXPe+4KL48kl+rfPXfqobNVH2ertymKlhukBt2yy2hKK6Sq+CxPP2KblFMrwa++pJi3ileQ/zx49uP539POodcft/RO8/XbzFfOiiK5699giI/r6p1QG5TFSw3yA275ZZQFFfJVfBYnn7FTVFMrt/JHbgpgtcfUXP+25jcNi864Mu3yKWvN/gv3+JN8VFRbNVUV+QnVbUOyG2qguUGuWG33BKK4iq5Ch7L0694rSieK1/emJ3b4NWWi6bYPg07972Xrnfatz163v/CdfDlC5TjovjUFHVFfk5V64DcpipYbpAbdsstoSiukqvgsTz9iteK4nMPO+34JJe+3rb4U5joar2i+PL7h6cdX7bdeBq8fpXyoChe/tMsb/p0H9hJ1Togt6kKlhvkht1ySyiKq+QqeCxPv+JNRfHUtt5bFC+dHs/bXt57TqUvi+Cn8vf9x+nvsU9fjIvi6ad9eVkxPwR7q1oH5DZVwXKD3LBbbglFcZVcBY/l6Vf8cUXx6b3ni3ee+zuenb/v8z8Uc/Q7ik+euqL3nwHg/iiKq+QqeCxPv+JNRfH0f7+dPmmmyaXwlaI4+B5t68U7z8O/co6a+vIt3lIUn7ti3goA/OEUxVVyFTyWp1+RS9xNs7rZ0PFKUbx8ozhtvn7neVwU03d4Y1G8mQMA7oOiuEqugsfy9Ct6RfGyWeXHu9JQzhhVuXPbu3zn+aoAnnz7/j2+eYo4KIrXP28OBADugqK4Sq6Cx/L0K3IRzM1q8GrgtYPX+1pEt2ueXz+8fOc517yXP5dObfDgj1kURQDYgKK4Sq6Cx/L0K3JRTP8Uy/l3Ay8e7ktF8fqzF8f/uMu5xd2WypcvX4Kuf4zzrx4OiuL1u9en+O73BgD+SIriKrkKHsvTr8hFMUrYU7c698Tuq4FXchU8T7UNRxGnR65r3nWrfKmNl69Ktk/KGRTFq/+H3vRx4QAw9CfO8nGZpyiukqvgsTz9ipui2D7X+uUfah6UvEu5KOZ/63kUcd34zqJXnjbFJ3a3mndOPMecNx+89Ryd8vxgJHjnmZ9L1cekyW2qguWGTXNzaZq2W66ieNdyFTyWp19xUxTzv4AyKnmXTvtdvcF7nTGMiCp4/dZwlMdnTw9ebf52yh8VxQ/8/LCR4vUwb562W25ZsNywaW4uTdN2y1UU71qugsfy9Ctui+JTfwtvej3utON13bv4V/SOIs6Pp22Xoxf/At/L1h9RBkdF8bpUHnxz2FLxepg3T9sttyxYbtg0N5emabvlKop3LVfBY3n6Fb2i+C//8iPeAY53cF932jn/yUj7t56PI0773O7w43u8YX39wd7fzltj43FRfP5XWW4/Ghy2V7we5s3TdsstC5YbNs3NpWnabrmK4l3LVfBYnr5rp6Koy8F7FK+HefO03XLLguWGTXNzaZq2W66ieNdyFTyWp++ZP0qGdyteD/PmabvllgXLDZvm5tI0bbdcRfGu5Sp4LE/fs/47z8CBryFvnia3qQqWGzbM/e23337LpWnaKXSnXEXxruUqeCxP3zEvKAJw73JhelT5uMxTFFfJVfBYnr5T3775lEMA7l8uTI8qH5d5iuIquQoey9N36unja/J2ALgnuTA9qnxc5imKq+QqeCxP36nWE/3JMwB3LRemR5WPyzxFcZVcBY/l6TsVH5SYtwLAfcmF6VHl4zJPUVwlV8FjeRoA+LBcmB5VPi7zFEWA5b6EvHma3KYqWG7YMPfXX3/9NZemaafQnXIVRYA9FH+ucN48bbfcsmC5YdPcXJqm7ZarKALsoXg9zJun7ZZbFiw3bJqbS9O03XIVRYA9FK+HefO03XLLguWGTXNzaZq2W66iCLCH4vUwb562W25ZsNywaW4uTdN2y1UUAfZQvB7mzdN2yy0Llhs2zc2ladpuuYoiwB6K18O8edpuuWXBcsOmubk0TdstV1EE2MMvIW+eJrepCpYbNsz95z//+c9cmqadQnfKVRQBAG7lwvSo8nGZpygCAJvLhelR5eMyT1EEADaXC9OjysdlnqIIAGwuF6ZHlY/LPEURANhcLkyPKh+XeYoiALC5XJgeVT4u8xRFgOUKPwVE7klVsNywYW7Jx81UfYxNVa6iCLCH4s8Vzpun7ZZbFiw3bJqbS9O03XIVRYA9FK+HefO03XLLguWGTXNzaZq2W66iCLCH4vUwb562W25ZsNywaW4uTdN2y1UUAfZQvB7mzdN2yy0Llhs2zc2ladpuuYoiwB6K18O8edpuuWXBcsOmubk0TdstV1EE2EPxepg3T9sttyxYbtg0N5emabvlKooAe/gS8uZpcpuqYLlhw9xff/3111yapp1Cd8pVFAEAbuXC9KjycZmnKAIAm8uF6VHl4zJPUQQANpcL06PKx2WeoggAbC4XpkeVj8s8RREA2FwuTI8qH5d5iiIAsLlcmB5VPi7zFEWA5b6GvHma3KYqWG7YMPe33377LZemaafQnXIVRYA9FH+ucN48bbfcsmC5YdPcXJqm7ZarKALsoXg9zJun7ZZbFiw3bJqbS9O03XIVRYA9FK+HefO03XLLguWGTXNzaZq2W66iCLCH4vUwb562W25ZsNywaW4uTdN2y1UUAfZQvB7mzdN2yy0Llhvkht1ySyiKAMtVrQNym6pguUFu2C23hKIIAECXoggAQJeiCABAl6IIAECXoggAQJeiCABAl6IIAECXogiwXNXHpMltqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAixXtQ7IbaqC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLPc15M3T5DZVwXKD3LBbbglFEQCALkURAIAuRREAgC5FEQCALkURAIAuRREAgC5FEWC5LyFvnia3qQqWG+SG3XJLKIoAy1V9nq7cpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAixXtQ7IbaqC5Qa5YbfcEooiwHK/hLx5mtymKlhukBt2yy2hKAIA0KUoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIsV/XpF3KbqmC5QW7YLbeEogiwXNXn6cptqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAixXtQ7IbaqC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLPcl5M3T5DZVwXKD3LBbbglFEQCALkURAIAuRREAgC5FEQCALkURAIAuRREAgC5FEWC5ryFvnia3qQqWG+SG3XJLKIoAy1V9nq7cpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAixXtQ7IbaqC5Qa5YbfcEooiAABdiiIAAF2KIgAAXYoiAEDXnzaTf/55iiIAQFcuYvcu//zzFEUAgK5cxO5d/vnnKYoAAF25iN27/PPPUxQBlqv6mDS5TVWw3CA3tNxcxqZV5SqKAHsoXrfy5mm75ZYFyw1yQ8vNZWxaVa6iCLCH4nUrb562W25ZsNwgN7TcXMamVeUqigB7KF638uZpu+WWBcsNckPLzWVsWlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAeyhet/LmabvllgXLDXJDy81lbFpVrqIIsIevIW+eJrepCpYb5IavX7/+9ttvv+UyNu0UWpGrKAIAfJ5cxO5d/vnnKYoAAF25iN27/PPPUxQBALpyEbt3+eefpygCAHTlInbv8s8/T1EEAOjKReze5Z9/nqIIANCVi9i9yz//PEURYLkvIW+eJrepCpYb5IYvX778+uuvv+YyNu0UWpGrKALsofjzf/PmabvllgXLDXJDy81lbFpVrqIIsIfidStvnrZbblmw3CA3tNxcxqZV5SqKAHsoXrfy5mm75ZYFyw1yQ8vNZWxaVa6iCLCH4nUrb562W25ZsNwgN7TcXMamVeUqigB7KF638uZpu+WWBcsNckPLzWVsWlWuogiwh+J1K2+etltuWbDcIDe03FzGplXlKooAe/gl5M3T5DZVwXKD3PDLL7/885///GcuY9NOoRW5iiIAwOfJReze5Z9/nqIIANCVi9i9yz//PEURAKArF7F7l3/+eYoiAEBXLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAZYr/LQOuSdVwXKD3ODjcRRFgArFn/+bN0/bLbcsWG6QG1puLmPTqnIVRYA9FK9befO03XLLguUGuaHl5jI2rSpXUQTYQ/G6lTdP2y23LFhukBtabi5j06pyFUWAPRSvW3nztN1yy4LlBrmh5eYyNq0qV1EE2EPxupU3T9sttyxYbpAbWm4uY9OqchVFgD0Ur1t587TdcsuC5Qa5oeXmMjatKldRBNjDl5A3T5PbVAXLDXLDly9ffv31119zGZt2Cq3IVRQBAD5PLmL3Lv/88xRFAICuXMTuXf755ymKAABduYjdu/zzz1MUAQC6chG7d/nnn6coAgB05SJ27/LPP09RBADoykXs3uWff56iCLDc15A3T5PbVAXLDXLD169ff/vtt99yGZt2Cq3IVRQB9lD8+b9587TdcsuC5Qa5YbfcEooiwHJV64DcpipYbpAbdsstoSgCLFe1DshtqoLlBrlht9wSiiLAclXrgNymKlhukBt2yy2hKAIsV7UOyG2qguUGuWG33BKKIsByVeuA3KYqWG6QG3bLLaEoAgDQpSgCANClKAIA0KUoAgDQpSgCANClKAIA0KUoAgDQpSgCLFf1MWlym6pg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\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"}],"term":"tag:\"count\"","current_player_id":null,"fields":[{"name":"page","type":"integer","callback":null,"default":1,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":null,"prepend":true},{"name":"per_page","type":"integer","callback":null,"default":50,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":null,"prepend":true},{"name":"sort","type":"string","callback":null,"default":null,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":null,"prepend":true},{"name":"body","type":"text","callback":null,"default":"*:*","directive":null,"facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":false},{"name":"group","type":"string","callback":null,"default":null,"directive":"group","facet":true,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"difficulty_rating_bin","type":"string","callback":null,"default":null,"directive":"difficulty_rating_bin","facet":true,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"id","type":"integer","callback":null,"default":null,"directive":"id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"tag","type":"string","callback":null,"default":null,"directive":"tag","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"product","type":"string","callback":null,"default":null,"directive":"product","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"created_at","type":"timeframe","callback":{},"default":null,"directive":"created_at","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"profile_id","type":"integer","callback":null,"default":null,"directive":"author_id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"created_by","type":"string","callback":null,"default":null,"directive":"author","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"player_id","type":"integer","callback":null,"default":null,"directive":"solver_id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"player","type":"string","callback":null,"default":null,"directive":"solver","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"solvers_count","type":"integer","callback":null,"default":null,"directive":"solvers_count","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"comments_count","type":"integer","callback":null,"default":null,"directive":"comments_count","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"likes_count","type":"integer","callback":null,"default":null,"directive":"likes_count","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"leader_id","type":"integer","callback":null,"default":null,"directive":"leader_id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"leading_solution","type":"integer","callback":null,"default":null,"directive":"leading_solution","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true}],"filters":[{"name":"asset_type","type":"string","callback":null,"default":null,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":"\"cody:problem\"","prepend":true},{"name":"profile_id","type":"integer","callback":{},"default":null,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":"author_id","static":null,"prepend":true}],"query":{"params":{"per_page":50,"term":"tag:\"count\"","current_player":null,"sort":"map(difficulty_value,0,0,999) asc"},"parser":"MathWorks::Search::Solr::QueryParser","directives":{"term":{"directives":{"tag":[["tag:\"count\"","","\"","count","\""]]}}},"facets":{"#\u003cMathWorks::Search::Field:0x00007f104837e6a0\u003e":null,"#\u003cMathWorks::Search::Field:0x00007f104837e600\u003e":null},"filters":{"#\u003cMathWorks::Search::Field:0x00007f104837cee0\u003e":"\"cody:problem\""},"fields":{"#\u003cMathWorks::Search::Field:0x00007f104837e920\u003e":1,"#\u003cMathWorks::Search::Field:0x00007f104837e880\u003e":50,"#\u003cMathWorks::Search::Field:0x00007f104837e7e0\u003e":"map(difficulty_value,0,0,999) asc","#\u003cMathWorks::Search::Field:0x00007f104837e740\u003e":"tag:\"count\""},"user_query":{"#\u003cMathWorks::Search::Field:0x00007f104837e740\u003e":"tag:\"count\""},"queried_facets":{}},"query_backend":{"connection":{"configuration":{"index_url":"http://index-op-v2/solr/","query_url":"http://search-op-v2/solr/","direct_access_index_urls":["http://index-op-v2/solr/"],"direct_access_query_urls":["http://search-op-v2/solr/"],"timeout":10,"vhost":"search","exchange":"search.topic","heartbeat":30,"pre_index_mode":false,"host":"rabbitmq-eks","port":5672,"username":"search","password":"J3bGPZzQ7asjJcCk","virtual_host":"search","indexer":"amqp","http_logging":"true","core":"cody"},"query_connection":{"uri":"http://search-op-v2/solr/cody/","proxy":null,"connection":{"parallel_manager":null,"headers":{"User-Agent":"Faraday v1.0.1"},"params":{},"options":{"params_encoder":"Faraday::FlatParamsEncoder","proxy":null,"bind":null,"timeout":null,"open_timeout":null,"read_timeout":null,"write_timeout":null,"boundary":null,"oauth":null,"context":null,"on_data":null},"ssl":{"verify":true,"ca_file":null,"ca_path":null,"verify_mode":null,"cert_store":null,"client_cert":null,"client_key":null,"certificate":null,"private_key":null,"verify_depth":null,"version":null,"min_version":null,"max_version":null},"default_parallel_manager":null,"builder":{"adapter":{"name":"Faraday::Adapter::NetHttp","args":[],"block":null},"handlers":[{"name":"Faraday::Response::RaiseError","args":[],"block":null}],"app":{"app":{"ssl_cert_store":{"verify_callback":null,"error":null,"error_string":null,"chain":null,"time":null},"app":{},"connection_options":{},"config_block":null}}},"url_prefix":"http://search-op-v2/solr/cody/","manual_proxy":false,"proxy":null},"update_format":"RSolr::JSON::Generator","update_path":"update","options":{"url":"http://search-op-v2/solr/cody"}}},"query":{"params":{"per_page":50,"term":"tag:\"count\"","current_player":null,"sort":"map(difficulty_value,0,0,999) asc"},"parser":"MathWorks::Search::Solr::QueryParser","directives":{"term":{"directives":{"tag":[["tag:\"count\"","","\"","count","\""]]}}},"facets":{"#\u003cMathWorks::Search::Field:0x00007f104837e6a0\u003e":null,"#\u003cMathWorks::Search::Field:0x00007f104837e600\u003e":null},"filters":{"#\u003cMathWorks::Search::Field:0x00007f104837cee0\u003e":"\"cody:problem\""},"fields":{"#\u003cMathWorks::Search::Field:0x00007f104837e920\u003e":1,"#\u003cMathWorks::Search::Field:0x00007f104837e880\u003e":50,"#\u003cMathWorks::Search::Field:0x00007f104837e7e0\u003e":"map(difficulty_value,0,0,999) asc","#\u003cMathWorks::Search::Field:0x00007f104837e740\u003e":"tag:\"count\""},"user_query":{"#\u003cMathWorks::Search::Field:0x00007f104837e740\u003e":"tag:\"count\""},"queried_facets":{}},"options":{"fields":["id","difficulty_rating"]},"join":" "},"results":[{"id":43058,"difficulty_rating":"easy"},{"id":43140,"difficulty_rating":"easy"},{"id":43112,"difficulty_rating":"easy"},{"id":44698,"difficulty_rating":"easy"},{"id":3026,"difficulty_rating":"easy"},{"id":54290,"difficulty_rating":"easy"},{"id":1077,"difficulty_rating":"easy-medium"},{"id":44717,"difficulty_rating":"easy-medium"},{"id":3027,"difficulty_rating":"easy-medium"},{"id":444,"difficulty_rating":"easy-medium"},{"id":3025,"difficulty_rating":"easy-medium"},{"id":2270,"difficulty_rating":"easy-medium"},{"id":45246,"difficulty_rating":"easy-medium"},{"id":138,"difficulty_rating":"easy-medium"},{"id":45365,"difficulty_rating":"easy-medium"},{"id":61058,"difficulty_rating":"medium"}]}}